summaryrefslogtreecommitdiff
path: root/Test/snapshots/Snapshots23.v2.bpl
blob: 144a092274396eb63e094150366323ff189a1848 (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 "5"} M()
{
    if (*)
    {
        // Don't remove this comment.
        assert 1 != 1;  // error
    }
    else
    {
        assert 2 == 2;
    }
}


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

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