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

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

    while (*)
    {
        x := 0;
    }

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