summaryrefslogtreecommitdiff
path: root/Test/snapshots/Snapshots23.v2.bpl
blob: e076b6184fe614c549638fe7dca2e0808f487014 (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;
}