summaryrefslogtreecommitdiff
path: root/Test/z3api/boog16.bpl
diff options
context:
space:
mode:
Diffstat (limited to 'Test/z3api/boog16.bpl')
-rw-r--r--Test/z3api/boog16.bpl11
1 files changed, 11 insertions, 0 deletions
diff --git a/Test/z3api/boog16.bpl b/Test/z3api/boog16.bpl
new file mode 100644
index 00000000..48afd41d
--- /dev/null
+++ b/Test/z3api/boog16.bpl
@@ -0,0 +1,11 @@
+function choose(a:bool, b:int, c:int) returns (x:int);
+axiom(forall a:bool, b:int, c:int ::
+ {choose(a,b,c)} !a ==> choose(a,b,c) == c);
+
+var myInt:int;
+procedure main()
+modifies myInt;
+ensures myInt==5;
+{
+ myInt:=4;
+} \ No newline at end of file