diff options
Diffstat (limited to 'Test/test15/ModelTest.bpl')
-rw-r--r-- | Test/test15/ModelTest.bpl | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/Test/test15/ModelTest.bpl b/Test/test15/ModelTest.bpl index 7764cb41..31e21de0 100644 --- a/Test/test15/ModelTest.bpl +++ b/Test/test15/ModelTest.bpl @@ -1,12 +1,12 @@ -// RUN: %boogie -printModel:2 "%s" > "%t"
-// RUN: %diff "%s.expect" "%t"
-procedure M (s : ref, r : ref) {
- var i : int, j : int;
- i := 0 + 1;
- j := i + 1;
- j := j + 1;
- j := j + 1;
- assert i == j;
- assert s == r;
-}
-type ref;
+// RUN: %boogie -printModel:2 "%s" > "%t" +// RUN: %diff "%s.expect" "%t" +procedure M (s : ref, r : ref) { + var i : int, j : int; + i := 0 + 1; + j := i + 1; + j := j + 1; + j := j + 1; + assert i == j; + assert s == r; +} +type ref; |