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

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

    assert 3 != 3;  // error
}