diff options
author | mikebarnett <unknown> | 2009-07-15 21:03:41 +0000 |
---|---|---|
committer | mikebarnett <unknown> | 2009-07-15 21:03:41 +0000 |
commit | ce1c2de044c91624370411e23acab13b0381949b (patch) | |
tree | 592539996fe08050ead5ee210c973801611dde40 /Test/houdini/houd10.bpl |
Initial set of files.
Diffstat (limited to 'Test/houdini/houd10.bpl')
-rw-r--r-- | Test/houdini/houd10.bpl | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Test/houdini/houd10.bpl b/Test/houdini/houd10.bpl new file mode 100644 index 00000000..1eea1691 --- /dev/null +++ b/Test/houdini/houd10.bpl @@ -0,0 +1,23 @@ +const {:existential true} b1:bool;
+const {:existential true} b2:bool;
+const {:existential true} b3:bool;
+
+var fooVar: int;
+var xVar: int;
+
+procedure foo()
+modifies fooVar;
+modifies xVar;
+ensures b1 ==> fooVar==0;
+ensures b3 ==> xVar<0;
+{
+ fooVar:=5;
+ call bar();
+}
+
+procedure bar();
+modifies xVar;
+requires fooVar!=5;
+
+// expected outcome: Errors
+// expected assigment: b1->True,b2->True,b3->True
\ No newline at end of file |