summaryrefslogtreecommitdiff
path: root/Test/inline/expansion3.bpl
blob: a6cbb411073ee269b7ef4d0febd18bf3cb43b6e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// RUN: %boogie "%s" > "%t"
// RUN: %diff "%s.expect" "%t"
function {:inline true} foo3(x:int, y:bool) returns(bool)
 { foo3(x,y) }

axiom foo3(1,false);

procedure baz1()
  requires foo3(2,false);
{
  assume foo3(1,true);
}