blob: b11daa528453678c757d41c1cbd063f799e0ddc7 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// RUN: %boogie -stratifiedInline:1 -vc:i "%s" > "%t"
// RUN: %diff "%s.expect" "%t"
function {:inline} f(a:bool) : bool { true }
procedure {:entrypoint} main()
{
var x: int;
assume f(x >= 0);
assume x >= 0;
}
|