summaryrefslogtreecommitdiff
path: root/test/regress/regress1/constarr3.cvc
blob: bf5cf961c78fe388f629ff42344722997eefe76f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
% EXIT: 1
% EXPECT: Array theory solver does not yet support write-chains connecting two different constant arrays
% should be unsat
all1, all2 : ARRAY INT OF INT;
aa, bb : ARRAY INT OF INT;
a, i : INT;
ASSERT all1 = ARRAY(INT OF INT) : 1;
ASSERT aa = all1 WITH [i] := 0;
ASSERT all2 = ARRAY(INT OF INT) : 2;
ASSERT bb = all2 WITH [i] := 0;
ASSERT aa = bb;
CHECKSAT;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback