summaryrefslogtreecommitdiff
path: root/Test/snapshots/Snapshots23.v0.bpl
blob: 8f637d19c12321e195306a9c67de6dc57fefbf11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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 "3"} N()
{
}