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

implementation {:id "M"} {:checksum "1"} M()
{
    if (*)
    {
        assert 1 != 1;  // error
    }
    else
    {
        assert 2 == 2;
    }

    assert 3 == 3;
}


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

implementation {:id "N"} {:checksum "4"} N()
{
    assert 4 == 4;
}