lean2/tests/lean/crash.lean
Leonardo de Moura 70c0eda9fc feat(frontends/lean): make sure all scopes are closed in the end of the module
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
2014-08-07 17:08:59 -07:00

12 lines
No EOL
151 B
Text

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