lean4-htt/tests/lean/begin_end_bug.lean
2017-01-03 21:01:14 -08:00

8 lines
174 B
Text

example (a b c : nat) : a = b → a = c → b = c :=
assume hab hac,
have b = a, begin trace a, symmetry, assumption end,
begin
transitivity,
exact this,
exact hac
end