summaryrefslogtreecommitdiff
path: root/Test/AbsHoudini/quant4.bpl
blob: 38029355a41db9b850582e6ecc48213a181682c8 (plain)
1
2
3
4
5
6
7
8
9
// RUN: %boogie -noinfer -contractInfer -printAssignment -inlineDepth:1 -abstractHoudini:HoudiniConst -z3opt:MBQI=true "%s" > "%t"
// RUN: %diff "%s.expect" "%t"
function {:existential true} {:absdomain "IA[HoudiniConst]"} b1() : bool;

procedure foo ()
{
  assert (exists x: int :: (0 <= x && x <= 2) && b1());
}