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

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

    assume x == 0;

    while (*)
    {
    }

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