diff options
author | Rustan Leino <leino@microsoft.com> | 2015-08-28 13:40:37 -0700 |
---|---|---|
committer | Rustan Leino <leino@microsoft.com> | 2015-08-28 13:40:37 -0700 |
commit | 35332e25e899424ee1714eea8d451c79563154aa (patch) | |
tree | 55cebc386a00a906c4feb130e6236f5dca6f98e8 /Test/z3api/boog31.bpl | |
parent | 21f1cfff139759d9b9f91ed800da2158daca8ed4 (diff) | |
parent | 713e870a0dd2241869685e95bf31702a4f74cfff (diff) |
Merge branch 'master' of https://github.com/boogie-org/boogie
Conflicts:
Source/Core/CommandLineOptions.cs
Source/ExecutionEngine/ExecutionEngine.cs
Source/ExecutionEngine/VerificationResultCache.cs
Source/VCGeneration/VC.cs
Test/snapshots/runtest.snapshot
Test/snapshots/runtest.snapshot.expect
Diffstat (limited to 'Test/z3api/boog31.bpl')
-rw-r--r-- | Test/z3api/boog31.bpl | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/Test/z3api/boog31.bpl b/Test/z3api/boog31.bpl index 86386a90..ca195c74 100644 --- a/Test/z3api/boog31.bpl +++ b/Test/z3api/boog31.bpl @@ -1,15 +1,15 @@ -type ref;
-
-const b1:bool;
-const b2:bool;
-const b3:bool;
-
-axiom (b1==true && b2==false && b3==true);
-
-procedure main ( )
-
-{
-var c: int;
-assert (c==0);
-}
-
+type ref; + +const b1:bool; +const b2:bool; +const b3:bool; + +axiom (b1==true && b2==false && b3==true); + +procedure main ( ) + +{ +var c: int; +assert (c==0); +} + |