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

implementation {:id "P"} {:checksum "2"} P()
{
    var i: int;

    i := 0;

    while (*)
    {
        i := 1;
    }

    assert i == 0;
}