summaryrefslogtreecommitdiff
path: root/Test/inline/fundef.bpl
blob: 46ce65bd6e46e8e6802ee42787c6e0d34c12956f (plain)
1
2
3
4
5
6
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 }