From d652155ae013f36a1ee17653a8e458baad2d9c2c Mon Sep 17 00:00:00 2001 From: Checkmate50 Date: Mon, 6 Jun 2016 23:14:18 -0600 Subject: Merging complete. Everything looks good *crosses fingers* --- Test/inline/expansion4.bpl | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'Test/inline/expansion4.bpl') diff --git a/Test/inline/expansion4.bpl b/Test/inline/expansion4.bpl index 1c1ff51c..cfd0672d 100644 --- a/Test/inline/expansion4.bpl +++ b/Test/inline/expansion4.bpl @@ -1,11 +1,11 @@ -// RUN: %boogie "%s" > "%t" -// RUN: %diff "%s.expect" "%t" -function foo(x:int) : int - { if x <= 0 then 1 else foo(x - 1) + 2 } - -procedure bar() -{ - assert foo(0) == 1; - assert foo(1) == 3; - assert foo(2) == 5; -} +// RUN: %boogie "%s" > "%t" +// RUN: %diff "%s.expect" "%t" +function foo(x:int) : int + { if x <= 0 then 1 else foo(x - 1) + 2 } + +procedure bar() +{ + assert foo(0) == 1; + assert foo(1) == 3; + assert foo(2) == 5; +} -- cgit v1.2.3