Add implicit foralls for bidir, update and unify pipeline
This commit is contained in:
parent
12bca1c32d
commit
9870802371
33 changed files with 1010 additions and 1055 deletions
|
|
@ -1,13 +1,9 @@
|
|||
data List (a) where {
|
||||
data List (a) where
|
||||
Nil : List (a)
|
||||
Cons : a -> List (a) -> List (a)
|
||||
};
|
||||
|
||||
test xs = case xs of {
|
||||
Cons Nil _ => 0 ;
|
||||
};
|
||||
|
||||
|
||||
test xs = case xs of
|
||||
Cons Nil _ => 0
|
||||
|
||||
List a /= List (List a)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue