summaryrefslogtreecommitdiff
path: root/test/regress/regress0/precedence/cmp-plus.cvc
blob: a7c07fe301e70561a4881eaaf0c16170179abe69 (plain)
1
2
3
4
5
6
7
% EXPECT: valid
% Simple test for right precedence of comparisons and plus/minus

x, y, z: INT;

QUERY (x + y - z > 0 AND 0 < x - y + z) <=> 
  ((((x + y) - z) > 0) AND (0 < ((x - y) + z)));
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback