summaryrefslogtreecommitdiff
path: root/Test/snapshots/Snapshots27.v1.bpl
blob: 4d60e1493cce87393a96e3f8eec49d0f671cfedc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
procedure {:checksum "0"} M();

implementation {:id "M"} {:checksum "2"} M()
{
    var x: int;
    var y: int;

    while (*)
    {
        x := 0;
        y := 0;
    }

    assert 0 == 0;
    assert x != x;
}