lean4-htt/tests/lean/crash.lean

12 lines
145 B
Text

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