1
0
forked from GitHub/gf-core

Removed variable for the type argument of List.

This commit is contained in:
bringert
2005-12-05 17:35:32 +00:00
parent 48cfd7d66f
commit 2b8e3311f4

View File

@@ -122,7 +122,7 @@ mul_Bool = rec one = True
-- The List type
--
data List : (_:Type) -> Type where
data List : Type -> Type where
Nil : (A:Type) -> List A
Cons : (A:Type) -> A -> List A -> List A