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

6 lines
120 B
Text

example (a b c : nat) : a = b → b = c → c = a :=
begin
intro h1,
intro h2,
exact eq.symm (eq.trans h1 _),
end