lean4-htt/old_tests/tests/lean/run/meta_tac7.lean
2018-04-10 12:56:55 -07:00

9 lines
197 B
Text

open nat tactic
example (a b c : Prop) (Ha : a) (Hb : b) (Hc : c) : b :=
by do trace_state, assumption
definition ex1 (a b c : Prop) : a → b → c → b :=
by do intros, assumption
#print ex1