summaryrefslogtreecommitdiff
path: root/Test/test21/LetSorting.bpl
diff options
context:
space:
mode:
Diffstat (limited to 'Test/test21/LetSorting.bpl')
-rw-r--r--Test/test21/LetSorting.bpl15
1 files changed, 15 insertions, 0 deletions
diff --git a/Test/test21/LetSorting.bpl b/Test/test21/LetSorting.bpl
new file mode 100644
index 00000000..3dc59fde
--- /dev/null
+++ b/Test/test21/LetSorting.bpl
@@ -0,0 +1,15 @@
+
+
+procedure Array0() returns (z: int)
+ ensures z >= 5;
+{
+L0:
+ goto L1, L2;
+L1:
+ z := 10;
+L2:
+ z := 20;
+ return;
+}
+
+