e51c4ad2e9
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
9 lines
193 B
Text
9 lines
193 B
Text
import logic
|
|
open tactic
|
|
|
|
theorem tst {A B : Prop} (H1 : A) (H2 : B) : A
|
|
:= by [trace "first"; state; now |
|
|
trace "second"; state; fail |
|
|
trace "third"; assumption]
|
|
|
|
check tst
|