You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Allow parsers to parse type signatures with erased parameters
We only allow `erased` on signatures with parameter names for now:
type Allowed = (x: Int, erased y: Int) => Int
type Disallowed = (Int, erased Int) => Int
0 commit comments