Files
why3/bench/invalid/induction.mlw
2014-09-22 15:40:37 +02:00

11 lines
132 B
Plaintext

module M
coinductive p unit =
| C: p () -> p ()
(* should not be proved using induction_pr *)
goal G: p () -> false
end