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
The change that TermParamRefs are Singletons caused a change how they are printed,
which this commit reverts.
We had before
def f(x: T): x.type
def f(x: T): x.type # M
Once TermParamRefs were singletons we got:
def f(x: T): T (x)
def f(x: T): x.M
With this commit we now get:
def f(x: T): x.type
def f(x: T): x.M
0 commit comments