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

12 lines
124 B
Text

section t
parameter t : Type
inductive eqt : t -> t -> Prop
| refl : forall x : t, eqt x x
#check eqt
end t
#check eqt