summaryrefslogtreecommitdiff
path: root/Test/og/houd1.bpl
diff options
context:
space:
mode:
Diffstat (limited to 'Test/og/houd1.bpl')
-rw-r--r--Test/og/houd1.bpl24
1 files changed, 0 insertions, 24 deletions
diff --git a/Test/og/houd1.bpl b/Test/og/houd1.bpl
deleted file mode 100644
index 8c86f22b..00000000
--- a/Test/og/houd1.bpl
+++ /dev/null
@@ -1,24 +0,0 @@
-// RUN: %boogie -noinfer -typeEncoding:m -useArrayTheory "%s" > "%t"
-// RUN: %diff "%s.expect" "%t"
-// XFAIL: *
-const {:existential true} b0: bool;
-const {:existential true} b1: bool;
-const {:existential true} b2: bool;
-
-var x:int;
-
-procedure A()
-{
- x := x + 1;
- yield;
-}
-
-procedure B()
-{
- x := 5;
- yield;
- assert b0 ==> (x == 5);
- assert b1 ==> (x >= 5);
- assert b2 ==> (x >= 6);
-}
-