a5f0593df1
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
11 lines
191 B
Text
11 lines
191 B
Text
namespace list
|
|
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}
|
|
end list
|
|
|
|
check list.list.{1}
|