summaryrefslogtreecommitdiff
path: root/Test/test2/Structured.bpl
diff options
context:
space:
mode:
authorGravatar Rustan Leino <unknown>2014-02-10 17:16:56 -0800
committerGravatar Rustan Leino <unknown>2014-02-10 17:16:56 -0800
commitd52d16b298f3c2bc2e114ef712e7664534493a1d (patch)
tree9d511d722c65942fbc9ffd940471b0d99364da51 /Test/test2/Structured.bpl
parent9a8cb7e40a8bde05f53e616a9b47f06fe57bcaed (diff)
Fixed bug in handling of break statements
Diffstat (limited to 'Test/test2/Structured.bpl')
-rw-r--r--Test/test2/Structured.bpl17
1 files changed, 17 insertions, 0 deletions
diff --git a/Test/test2/Structured.bpl b/Test/test2/Structured.bpl
index 69ea2576..d5ce8cf4 100644
--- a/Test/test2/Structured.bpl
+++ b/Test/test2/Structured.bpl
@@ -325,3 +325,20 @@ procedure Q2() returns (x: int)
}
}
}
+
+// There was once a bug in Boogie's handling of the following break statement.
+procedure BreakIssue(x: int) returns (curr: int)
+ ensures x == 18 || curr == 100; // holds, because the procedure doesn't
+ // actually ever terminate if x != 18
+{
+ while (x != 18) {
+ while (x != 19) {
+ call curr := Read();
+ if (curr == 0) {
+ break;
+ }
+ }
+ }
+}
+
+procedure Read() returns (val: int);