lean2/tests/lean/run/bug5.lean
Leonardo de Moura 68d9bef860 refactor(library): add 'eq' and 'ne' namespaces
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
2014-09-04 18:41:06 -07:00

4 lines
95 B
Text

import logic
theorem symm2 {A : Type} {a b : A} (H : a = b) : b = a
:= eq.subst H (eq.refl a)