summaryrefslogtreecommitdiff
path: root/Test/lazyinline/bar7.bpl
blob: 0eff6a7d683a06de7bb087eaa46ceda3caf95987 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
var x: int;
var y: int;

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

procedure {:inline 1} foo() 
modifies x, y;
{
  x := x + 1;
  assert x != y;
  call bar();
  call bar();
  x := x + 1;
  assert x == y;
}

procedure main()
requires x == y;
modifies x, y;
{
  call foo();
}