summaryrefslogtreecommitdiff
path: root/Test/snapshots/Snapshots6.v1.bpl
blob: be8b699dd13229b67f849fec0031bd3d8212265c (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;