summaryrefslogtreecommitdiff
path: root/Test/z3api/bar1.bpl
blob: b22f02375d6ebc8d28347a1a9baa475198310e71 (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
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;
  call bar();
  call bar();
  x := x + 1;
}

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