21176c61fe
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
11 lines
148 B
Text
11 lines
148 B
Text
import logic
|
|
|
|
section
|
|
hypothesis P : Prop.
|
|
|
|
theorem crash
|
|
:= assume H : P,
|
|
have H' : ¬ P,
|
|
from H,
|
|
_.
|
|
|