summaryrefslogtreecommitdiff
path: root/Test/test21/InterestingExamples0.bpl
blob: d1b90d10e2b17c181e1e33bb68191679390ecbc8 (plain)
1
2
3
4
5
6
7
8

procedure P() returns () {
var a : <t>[t]int;

a[5] := 0;
a[true] := 1;
assert a[5] == 0;
}