mirror of
https://github.com/AdaCore/why3.git
synced 2026-02-12 12:34:55 -08:00
11 lines
132 B
Plaintext
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
|