lean2/tests/lean/crash.lean

12 lines
155 B
Text

import logic
section
hypothesis P : Prop.
definition crash
:= assume H : P,
have H' : ¬ P,
from H,
_.
end