Implemented potential fix for one of the bugs

This commit is contained in:
sebastianselander 2023-03-05 14:34:39 +01:00
parent fe63fa6215
commit 778fec3dc4
3 changed files with 262 additions and 195 deletions

View file

@ -16,7 +16,7 @@ data Maybe ('a) where {
id : 'a -> 'a ;
id x = x ;
main : Maybe ('a -> 'a) ;
main : Maybe ('a -> 'a) ;
main = Just id;
-- data Either ('a 'b) where {