/* Simple Precedence Test */ /* Basic variables */ x : 5; y : 3; /* Test 1: Simple arithmetic */ result1 : x + y; ..out result1; /* Test 2: Binary minus (the problematic one) */ result2 : x - y; ..out result2; /* Test 3: Unary minus */ result3 : -x; ..out result3; /* Test 4: Mixed */ result4 : x * -y; ..out result4;