diff options
author | mikebarnett <unknown> | 2009-07-15 21:03:41 +0000 |
---|---|---|
committer | mikebarnett <unknown> | 2009-07-15 21:03:41 +0000 |
commit | ce1c2de044c91624370411e23acab13b0381949b (patch) | |
tree | 592539996fe08050ead5ee210c973801611dde40 /Test/test21/InterestingExamples0.bpl |
Initial set of files.
Diffstat (limited to 'Test/test21/InterestingExamples0.bpl')
-rw-r--r-- | Test/test21/InterestingExamples0.bpl | 8 |
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 |