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