lean4-htt/tests/lean/run/tc_loop.lean
2016-07-31 15:16:52 -07:00

8 lines
276 B
Text

open tactic
#elab (do { trace "foo", trace_state } : tactic unit)
#elab
λ (A : Type) (a b c d : A) (H₁ : a = b) (H₂ : c = b) (H₃ : d = c),
have a = c, by do { trace "have-expr...", trace_state, transitivity, assumption, symmetry, assumption },
show a = d, from sorry