summaryrefslogtreecommitdiff
path: root/Test/test21/InterestingExamples0.bpl
diff options
context:
space:
mode:
Diffstat (limited to 'Test/test21/InterestingExamples0.bpl')
-rw-r--r--Test/test21/InterestingExamples0.bpl8
1 files changed, 8 insertions, 0 deletions
diff --git a/Test/test21/InterestingExamples0.bpl b/Test/test21/InterestingExamples0.bpl
new file mode 100644
index 00000000..d1b90d10
--- /dev/null
+++ b/Test/test21/InterestingExamples0.bpl
@@ -0,0 +1,8 @@
+
+procedure P() returns () {
+var a : <t>[t]int;
+
+a[5] := 0;
+a[true] := 1;
+assert a[5] == 0;
+} \ No newline at end of file