lean4-htt/tests/lean/crash.lean

11 lines
144 B
Text

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