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

    assume x == 0;

    while (*)
    {
        x := 1;
    }

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