summaryrefslogtreecommitdiff
path: root/Test/snapshots/Snapshots7.v0.bpl
blob: 400b209c1324fa47bc25d1021d2cd67c38ab1621 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
var x: int;
var y: int;
var z: int;

procedure {:checksum "0"} M();
  modifies x, y, z;

implementation {:id "M"} {:checksum "1"} M()
{
    z := 0;

    call N();

    assert y < 0;
}

procedure {:checksum "2"} N();
  modifies x, y;
  ensures y < z;