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

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];
}