summaryrefslogtreecommitdiff
path: root/Test/test1/LogicalExprs.bpl
blob: a5d3f9879bb0a1cef90d04a15c079323c34ea3f7 (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;