summaryrefslogtreecommitdiff
path: root/Test/snapshots/Snapshots18.v0.bpl
blob: 750c68916e00891acf57aa2e12160693c076a66d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
procedure {:checksum "0"} M();

implementation {:id "M"} {:checksum "1"} M()
{
    while (true)
    {
        assert 0 == 0;
        
        call N();
        call N();

        if (*)
        {
            break;
        }

        assert 1 != 1;
    }

    assert 2 != 2;
}

procedure {:checksum "2"} N();
  ensures false;