summaryrefslogtreecommitdiff
path: root/Test/og/termination.bpl
diff options
context:
space:
mode:
Diffstat (limited to 'Test/og/termination.bpl')
-rw-r--r--Test/og/termination.bpl18
1 files changed, 0 insertions, 18 deletions
diff --git a/Test/og/termination.bpl b/Test/og/termination.bpl
deleted file mode 100644
index 2d5542dd..00000000
--- a/Test/og/termination.bpl
+++ /dev/null
@@ -1,18 +0,0 @@
-// RUN: %boogie -noinfer -typeEncoding:m -useArrayTheory "%s" > "%t"
-// RUN: %diff "%s.expect" "%t"
-procedure {:yields} {:layer 0} X();
-ensures {:atomic} |{ A: return true; }|;
-
-procedure {:yields} {:layer 0} Y();
-ensures {:left} |{ A: return true; }|;
-
-procedure {:yields} {:layer 1} main() {
- yield;
- call X();
- while (*)
- {
- call Y();
- }
- yield;
- assert {:layer 1} true;
-}