lean2/tests/lean/crash.lean
2014-10-11 17:13:56 -07:00

12 lines
155 B
Text

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