summaryrefslogtreecommitdiff
path: root/Test/AbsHoudini/test8.bpl
blob: 6c55016a8bd336a331bbda38c6be74778e76ec2c (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
function {:existential true} Assert(): bool;

var g: int;

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

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

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

// Expected: Assert = false