12 lines
339 B
Text
12 lines
339 B
Text
prelude namespace foo structure {l} prod (A : Type l) (B : Type l) :=
|
|
(pr1 : A) (pr2 : B)
|
|
|
|
structure {l} prod (A : Type l) (B : Type l) : Type :=
|
|
(pr1 : A) (pr2 : B)
|
|
|
|
structure {l} prod (A : Type l) (B : Type l) : Type l :=
|
|
(pr1 : A) (pr2 : B)
|
|
|
|
structure {l} prod2 (A : Type l) (B : Type l) : Type (max 1 l) :=
|
|
(pr1 : A) (pr2 : B)
|
|
end foo
|