File tree Expand file tree Collapse file tree 3 files changed +20
-1
lines changed Expand file tree Collapse file tree 3 files changed +20
-1
lines changed Original file line number Diff line number Diff line change @@ -97,7 +97,9 @@ func Test_Invalid_Basic_18(t *testing.T) {
9797func Test_Invalid_Basic_19 (t * testing.T ) {
9898 checkCorsetInvalid (t , "corset/invalid/basic_invalid_19" )
9999}
100-
100+ func Test_Invalid_Basic_20 (t * testing.T ) {
101+ checkCorsetInvalid (t , "corset/invalid/basic_invalid_20" )
102+ }
101103func Test_Invalid_Logic_01 (t * testing.T ) {
102104 checkCorsetInvalid (t , "corset/invalid/logic_invalid_01" )
103105}
@@ -515,6 +517,9 @@ func Test_Invalid_Lookup_17(t *testing.T) {
515517func Test_Invalid_Lookup_18 (t * testing.T ) {
516518 checkCorsetInvalid (t , "corset/invalid/lookup_invalid_18" )
517519}
520+ func Test_Invalid_Lookup_19 (t * testing.T ) {
521+ checkCorsetInvalid (t , "corset/invalid/lookup_invalid_19" )
522+ }
518523
519524// ===================================================================
520525// Interleavings
Original file line number Diff line number Diff line change 1+ ; ;
2+ (module m1)
3+
4+ (defcolumns (X :i16 ) (Y :i16 ))
5+ (defconstraint test () (== X Y))
6+
7+ (module m1)
8+ (defconstraint test () (!= X Y))
Original file line number Diff line number Diff line change 1+ (module m1)
2+ (defcolumns (X :i16 ) (Y :i16 ))
3+ (defclookup test (Y) 1 (X))
4+
5+ (module m1)
6+ (defclookup test (X) 1 (Y))
You can’t perform that action at this time.
0 commit comments