summaryrefslogtreecommitdiff
path: root/Test/snapshots/Snapshots6.v1.bpl
blob: 73e280d2830b7b6bf0e93ad8580cf863b3547730 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
var x: int;
var y: int;

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

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

    call N();

    assert y == 0;
}

procedure {:checksum "3"} N();
  // Change: more modified variables
  modifies x, y;