summaryrefslogtreecommitdiff
path: root/Test/AbsHoudini/test7.bpl
blob: 118a1c9967d8ddcac99246c30ef51aad4299827e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// RUN: %boogie -noinfer -contractInfer -printAssignment -inlineDepth:1 -abstractHoudini:IA[ConstantProp] "%s" > "%t"
// RUN: %diff "%s.expect" "%t"
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