summaryrefslogtreecommitdiff
path: root/Test/houdini/houd1.bpl
diff options
context:
space:
mode:
Diffstat (limited to 'Test/houdini/houd1.bpl')
-rw-r--r--Test/houdini/houd1.bpl19
1 files changed, 19 insertions, 0 deletions
diff --git a/Test/houdini/houd1.bpl b/Test/houdini/houd1.bpl
new file mode 100644
index 00000000..4acea845
--- /dev/null
+++ b/Test/houdini/houd1.bpl
@@ -0,0 +1,19 @@
+const {:existential true} b1:bool;
+
+var myVar: int;
+
+procedure foo (i:int)
+modifies myVar;
+// comment
+ensures b1 ==> myVar>0;
+ensures myVar!=-1;
+{
+ if (i>0) {
+ myVar := 5;
+ } else {
+ myVar := 0;
+ }
+}
+
+// expected output: Correct
+// expected end assigment: b1->False \ No newline at end of file