lean4-htt/tests/lean/run/tactic3.lean
2016-06-10 18:29:41 -07:00

10 lines
198 B
Text

exit
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