bdab979e09
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
7 lines
No EOL
136 B
Text
7 lines
No EOL
136 B
Text
inductive list (A : Type) : Type :=
|
|
| nil : list A
|
|
| cons : A → list A → list A
|
|
|
|
check list.{1}
|
|
check cons.{1}
|
|
check list_rec.{1 1} |