summaryrefslogtreecommitdiff
path: root/Test/snapshots/Snapshots18.v1.bpl
blob: 262b5e4fd9f5a3932f705a54233d54c880e7233f (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;  // error
    }

    assert 2 != 2;  // error
}

procedure {:checksum "3"} N();
  ensures true;