lean2/tests/lean/interactive/proof_state_info2.input
Leonardo de Moura 212ae0b61c feat(frontends/lean): automatically add 'info' tactic in begin-end blocks
Actually, the tactic is only added when Lean is in collect-info mode.
2014-10-23 13:30:04 -07:00

15 lines
219 B
Text

VISIT proof_state_info.lean
SYNC 9
import logic
open tactic
theorem tst (a b c : Prop) : a → b → a ∧ b :=
begin
intros (Ha, Hb),
apply and.intro,
apply Ha,
apply Hb,
end
WAIT
INFO 5 17
INFO 6 17
INFO 7 10