1 2 3 4 5 6 7
function {:inline true} foo(x:int) returns(bool) { x > 0 } procedure P() { assert foo(13); assert foo(-5); // error }