summaryrefslogtreecommitdiff
path: root/Test/inline/expansion3.bpl
blob: bfb8b0fa08551e1593405dcc5228b0ee92cd062e (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);
}