duplicate signatures disallowed

This commit is contained in:
sebastianselander 2023-03-24 11:27:19 +01:00
parent aa73f147f0
commit 32f8a3e8a9
2 changed files with 4 additions and 2 deletions

View file

@ -21,6 +21,7 @@ data Bool () where {
-- Cons x xs => x
-- };
firstIsOne : List (Int) -> Bool () ;
firstIsOne : List (Int) -> Bool () ;
firstIsOne xs = case xs of {
Cons x xs => case x of {