summaryrefslogtreecommitdiff
path: root/Test/snapshots/Snapshots21.v0.bpl
blob: 4a4080f55b6c330689294bea3b0e47e74c88a34c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
procedure {:checksum "0"} M();

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

    assert 3 != 3;
}