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
Fix#1169: Fix strange type formatting in error message
We already generate an error message for i1169.scala, but it looked weird:
|bridge generated for member method produce=> X in class XProducer
|which overrides method produce=> T in trait Producer
|clashes with definition of the member itself; both have erased type (): Object.
The fix changes how ExprTypes in method signatures are handled. We now get:
|bridge generated for member method produce: X in class XProducer
|which overrides method produce: T in trait Producer
|clashes with definition of the member itself; both have erased type (): Object."
0 commit comments