test(tests/lean/extra): test for Soonho

This commit is contained in:
Leonardo de Moura 2015-07-27 19:31:52 -07:00
parent a9630edfed
commit a3b570c852

View file

@ -0,0 +1,5 @@
example (a b c : nat) : a = b → b = c → a = c :=
begin
intro h₁ h₂,
exact eq.trans _ h₂
end