diff options
Diffstat (limited to 'Test/bitvectors/bv2.bpl')
-rw-r--r-- | Test/bitvectors/bv2.bpl | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/Test/bitvectors/bv2.bpl b/Test/bitvectors/bv2.bpl index 45fdf7e4..8e2c1dad 100644 --- a/Test/bitvectors/bv2.bpl +++ b/Test/bitvectors/bv2.bpl @@ -1,13 +1,13 @@ -// RUN: %boogie -proverWarnings:1 "%s" > "%t"
-// RUN: %diff "%s.expect" "%t"
-procedure foo2(x : bv32) returns(r : bv32)
-{
- block1:
- r := x[-1:1]; // Error
-// r := x[x:1]; // Error
- r := x[1:x]; // Error
- r := x[1+1:3]; // Error
- return;
-}
-
-
+// RUN: %boogie -proverWarnings:1 "%s" > "%t" +// RUN: %diff "%s.expect" "%t" +procedure foo2(x : bv32) returns(r : bv32) +{ + block1: + r := x[-1:1]; // Error +// r := x[x:1]; // Error + r := x[1:x]; // Error + r := x[1+1:3]; // Error + return; +} + + |