Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix: polymorphic and concrete numeral types are now distinguished
before: > foo : (Foo String Int a) > add_one : forall a. (Maybe I32 -> Maybe I32 can a) after: > foo : (Foo String (Int a)) > add_one : forall a. (Maybe I32 -> Maybe I32 can a) -- No change for concrete types refs: #203 (comment)
- Loading branch information