e7c7d5718a
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,
|
|
_.
|
|
|