diff options
Diffstat (limited to 'Test/inline/fundef.bpl')
-rw-r--r-- | Test/inline/fundef.bpl | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Test/inline/fundef.bpl b/Test/inline/fundef.bpl index 9c5b2cfd..1d2dd50d 100644 --- a/Test/inline/fundef.bpl +++ b/Test/inline/fundef.bpl @@ -1,8 +1,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 }
+// 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 } |