summaryrefslogtreecommitdiff
path: root/Test/houdini/houd9.bpl
blob: c8f91ad4b7753ef5763bb9046fa8b97dcfdce8a5 (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
27
28
29
30
31
32
33
34
// RUN: %boogie -noinfer -contractInfer -printAssignment "%s" > "%t"
// RUN: %diff "%s.expect" "%t"
const {:existential true} b1:bool;
const {:existential true} b2:bool;
const {:existential true} b3:bool;

axiom(b1 && b2 && b3);

var fooVar: int;
var xVar: int;


procedure foo() 
modifies fooVar;
modifies xVar;
ensures b1 ==> fooVar>0;
ensures b2 ==> fooVar==0;
ensures b3 ==> xVar<0;
{
  fooVar:=5; 
  assert(fooVar>5);
  xVar:=0;
  assert(xVar>0);
}

// expected outcome: Errors
// expected assigment: b1->True,b2->True,b3->True