summaryrefslogtreecommitdiff
path: root/Test/snapshots/Snapshots36.v1.bpl
blob: 317182a58191a5be5c55d2c414073ae8707e4e5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
function {:checksum "3"} F() : bool
{
    false
}

procedure {:checksum "0"} P(b: bool);

implementation {:id "P"} {:checksum "1"} P(p: bool)
{
    var l: [int]bool;

    l := (lambda n: int :: F());
    assert l[0];
}