12 lines
124 B
Text
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
|