We had to change subtype to use Sort since the axiom strong_indefinite_description uses it. see #1341
7 lines
163 B
Text
7 lines
163 B
Text
inductive List (A : Sort*) : Sort*
|
|
| nil : List
|
|
| cons : A → List → List
|
|
namespace List end List open List
|
|
check List.{1}
|
|
check cons.{1}
|
|
check List.rec.{1 1}
|