summaryrefslogtreecommitdiff
path: root/Test/inline/fundef.bpl
blob: a7298c9c8d9d18965cfe147f242756336c614d79 (plain)
1
2
3
4
5
6
7
8
// RUN: %boogie -print:- -env:0 %s > %t
// RUN: %diff %s.expect %t
function {:inline true} foo(x:int) returns(bool)
  { x > 0 }
function {:inline false} foo2(x:int) returns(bool)
  { x > 0 }
function foo3(x:int) returns(bool)
  { x > 0 }