summaryrefslogtreecommitdiff
path: root/Test/snapshots/Snapshots22.v0.bpl
blob: c2be13ded98183cded5dc73d4f95d5aab0f36e5e (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;
    }

    assert 3 == 3;
}