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

13 lines
215 B
Text

open tactic
section
set_option pp.universes true
set_option pp.implicit true
variable {A : Type}
variables {a b : A}
variable H : a = b
variables H1 H2 : b = a
#check H1
#check H
#check H2
end