lean2/tests/lean/crash.lean
Leonardo de Moura 4ab0dd4700 fix(tests/lean): adjust test to reflect recent changes
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
2014-08-26 09:12:18 -07:00

12 lines
No EOL
154 B
Text

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