summaryrefslogtreecommitdiff
path: root/Test/aitest0/Issue25.bpl
blob: 6ffcd113f116a8bd092f4d032aa3cce058acd86e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// RUN: %boogie -infer:j "%s" > "%t"
// RUN: %diff "%s.expect" "%t"

const N: int;
axiom 0 <= N;

procedure vacuous_post()
ensures (forall k, l: int :: 0 <= k && k <= l && l < N ==> N < N); // Used to verify at some point (see https://github.com/boogie-org/boogie/issues/25).
{
var x: int;
x := -N;
while (x != x) {
}
}