summaryrefslogtreecommitdiff
path: root/test/regress/regress0/arith/integers/arith-interval.cvc
diff options
context:
space:
mode:
Diffstat (limited to 'test/regress/regress0/arith/integers/arith-interval.cvc')
-rw-r--r--test/regress/regress0/arith/integers/arith-interval.cvc8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/regress/regress0/arith/integers/arith-interval.cvc b/test/regress/regress0/arith/integers/arith-interval.cvc
new file mode 100644
index 000000000..e8b229faa
--- /dev/null
+++ b/test/regress/regress0/arith/integers/arith-interval.cvc
@@ -0,0 +1,8 @@
+% EXPECT: valid
+% EXIT: 20
+x: INT;
+P: INT -> BOOLEAN;
+
+ASSERT 1 <= x AND x <= 2;
+ASSERT P(1) AND P(2);
+QUERY P(x);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback