summaryrefslogtreecommitdiff
path: root/Test/test21/LetSorting.bpl
blob: 3dc59fde0940966c3383401af3bef95a0eba59ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15


procedure Array0() returns (z: int)
  ensures z >= 5;
{
L0:
  goto L1, L2;
L1:
  z := 10;
L2:
  z := 20;
  return;
}