summaryrefslogtreecommitdiff
path: root/Test/AbsHoudini/test7.bpl
blob: bfe8a32dfc37e25ffb21d5b019d90de8370c748b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
function {:existential true} Assert() : bool;

var g: int;

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

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

// Expected: Assert = false