In the standard library, we should use explicit universe variables for universe polymorphic definitions. Users that want to declare universe polymorphic definitions but do not want to provide universe level parameters should use Type _ or Type*
4 lines
127 B
Text
4 lines
127 B
Text
∃ (A : Type) (x y : A), x = y : Prop
|
|
∃ (x : num), x = 0 : Prop
|
|
Σ (x : num), x = 10 : Type
|
|
Σ (A : Type), List A : Type₂
|