Files
why3/examples/check-builtin/bool.why
2018-06-15 16:45:58 +02:00

10 lines
187 B
Plaintext

theory Test
use bool.Bool
goal G1 : True <> False
goal G2 : forall x:bool. x = True \/ x = False
goal G3 : forall x y z:bool. x<>y /\ y<>z /\ z<>x -> false
end