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

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

    while (*)
    {
        x := 0;
        x := x + 1;
    }

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