summaryrefslogtreecommitdiff
path: root/test/regress/regress1/bug585.cvc
diff options
context:
space:
mode:
Diffstat (limited to 'test/regress/regress1/bug585.cvc')
-rw-r--r--test/regress/regress1/bug585.cvc9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/regress/regress1/bug585.cvc b/test/regress/regress1/bug585.cvc
new file mode 100644
index 000000000..825cb0003
--- /dev/null
+++ b/test/regress/regress1/bug585.cvc
@@ -0,0 +1,9 @@
+% EXPECT: sat
+
+Cache: TYPE = ARRAY [0..100] OF [# addr: INT, data: REAL #];
+State: TYPE = [# pc: INT, cache: Cache #];
+
+s0: State;
+s1: State = s0 WITH .cache[10].data := 2/3;
+
+CHECKSAT;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback