summaryrefslogtreecommitdiff
path: root/Test/snapshots/Snapshots29.v0.bpl
blob: f4087f9070b2adeec8f4069f0656d8d33dd0a0b2 (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;
}