blob: b8652c7b7b69c1a6a5860a2d22d74ae60d6ffc31 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
procedure {:checksum "P0$proc#0"} P0(n: int where F(n));
// Action: verify
implementation {:id "P0"} {:checksum "P0$impl#0"} P0(n: int)
{
assert false;
}
function {:checksum "F#1"} F(n: int) : bool
{
false
}
|