summaryrefslogtreecommitdiff
path: root/Test/houdini/test8.bpl
blob: c92d63fe6cd8260048e1578ce2e9bb0ee40bea5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// RUN: %boogie -noinfer -contractInfer -printAssignment -inlineDepth:1 %s > %t
// RUN: %diff %s.expect %t
var g: int;

procedure main() 
modifies g;
{
  g := 0;
  call foo();
  assert g == 1;
}

procedure {:inline 1} foo() 
modifies g;
{
  call bar();
}

procedure bar()
modifies g;
{
  g := g + 1;
}