diff options
Diffstat (limited to 'Test/bitvectors/bv4.bpl')
-rw-r--r-- | Test/bitvectors/bv4.bpl | 50 |
1 files changed, 25 insertions, 25 deletions
diff --git a/Test/bitvectors/bv4.bpl b/Test/bitvectors/bv4.bpl index 29c8130a..1e7b6e31 100644 --- a/Test/bitvectors/bv4.bpl +++ b/Test/bitvectors/bv4.bpl @@ -1,25 +1,25 @@ -// RUN: %boogie -proverWarnings:1 "%s" > "%t"
-// RUN: %diff "%s.expect" "%t"
-
-function a() returns(bv32);
-axiom a() == a();
-
-axiom 0bv5 != 1bv5;
-
-
-// -------------------------
-type $x;
-function g() returns($x);
-type Field x;
-var $gmem : <x>[ref, Field x] x;
-const unique f : Field $x;
-
-procedure qq()
- modifies $gmem;
-{
- $gmem[null, f] := g();
-}
-
-
-type ref;
-const null : ref;
+// RUN: %boogie -proverWarnings:1 "%s" > "%t" +// RUN: %diff "%s.expect" "%t" + +function a() returns(bv32); +axiom a() == a(); + +axiom 0bv5 != 1bv5; + + +// ------------------------- +type $x; +function g() returns($x); +type Field x; +var $gmem : <x>[ref, Field x] x; +const unique f : Field $x; + +procedure qq() + modifies $gmem; +{ + $gmem[null, f] := g(); +} + + +type ref; +const null : ref; |