lean4-htt/tests/lean/run/bug6.lean
2017-03-09 18:41:19 -08:00

20 lines
322 B
Text

open eq
section
variable {A : Type}
theorem T {a b : A} (H : a = b) : b = a
:= symm H
variables x y : A
variable H : x = y
#check T H
#check T
end
section
variable {A : Type}
theorem T2 ⦃a b : A⦄ (H : a = b) : b = a
:= symm H
variables x y : A
variable H : x = y
#check T2 H
#check T2
end