diff options
Diffstat (limited to 'Test/z3api/boog30.bpl')
-rw-r--r-- | Test/z3api/boog30.bpl | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/Test/z3api/boog30.bpl b/Test/z3api/boog30.bpl index 81e04f20..d26c617c 100644 --- a/Test/z3api/boog30.bpl +++ b/Test/z3api/boog30.bpl @@ -1,14 +1,14 @@ -type ref;
-
-function LIFT(x:bool) returns (int);
-axiom(forall x:bool :: {LIFT(x)} x <==> LIFT(x) != 0);
-
-procedure main ( )
-
-{
-var c: int;
-
-c := LIFT(1==5);
-assert (c==0);
-}
-
+type ref; + +function LIFT(x:bool) returns (int); +axiom(forall x:bool :: {LIFT(x)} x <==> LIFT(x) != 0); + +procedure main ( ) + +{ +var c: int; + +c := LIFT(1==5); +assert (c==0); +} + |