lean2/tests/lean/beginend_bug.lean

10 lines
167 B
Text
Raw Normal View History

import tools.tactic logic
open tactic
theorem foo (A : Type) (a b c : A) (Hab : a = b) (Hbc : b = c) : a = c :=
begin
apply eq.trans,
apply Hbc,
apply Hbc,
end