We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5aa449b commit f97f227Copy full SHA for f97f227
regression/ebmc/range_type/range_type6.desc
@@ -0,0 +1,8 @@
1
+KNOWNBUG
2
+range_type6.smv
3
+--bound 10
4
+^EXIT=0$
5
+^SIGNAL=0$
6
+--
7
8
+The result does not match the expected result.
regression/ebmc/range_type/range_type6.smv
@@ -0,0 +1,14 @@
+MODULE main
+VAR x:1..6;
+
+ASSIGN
+ init(x) := 1;
+ next(x) :=
+ case
9
+ x=1 : x+1;
10
+ TRUE: 4;
11
+ esac;
12
13
+-- should fail
14
+LTLSPEC G x!=4
0 commit comments