summaryrefslogtreecommitdiff
path: root/Test/test1/LogicalExprs.bpl
blob: 02174a321b3c147a24ed3ab55aa1730bf3709d16 (plain)
1
2
3
4
5
6
7
8
// RUN: %boogie -noVerify "%s" > "%t"
// RUN: %diff "%s.expect" "%t"
const P: bool;
const Q: bool;

axiom (forall x: int :: x < 0);
axiom Q ==> P;
axiom (forall x: int :: x < 0) ==> P;