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

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

    i := 0;

    while (*)
    {
        i := 0;
    }

    assert i == 0;
}