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/z3api/boog11.bpl |
Initial set of files.
Diffstat (limited to 'Test/z3api/boog11.bpl')
-rw-r--r-- | Test/z3api/boog11.bpl | 16 |
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;
+}
+
+
+
|