summaryrefslogtreecommitdiff
path: root/Test/z3api/boog11.bpl
diff options
context:
space:
mode:
Diffstat (limited to 'Test/z3api/boog11.bpl')
-rw-r--r--Test/z3api/boog11.bpl16
1 files changed, 16 insertions, 0 deletions
diff --git a/Test/z3api/boog11.bpl b/Test/z3api/boog11.bpl
new file mode 100644
index 00000000..e66802ea
--- /dev/null
+++ b/Test/z3api/boog11.bpl
@@ -0,0 +1,16 @@
+// types
+const top: ref;
+var myRef: ref;
+
+// procedure
+procedure SetTo(r: ref);
+ modifies myRef ;
+
+ ensures myRef==r;
+
+implementation SetTo(c: ref) {
+ myRef:=top;
+}
+
+
+