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#4430: Disallow access to Java bridge methods before typer
Scala bridge methods only come to existence during erasure, so are not visible
before. But Java bridge methods come with their class files. To get parity, we
have to ignore them before erasure, which is done here by tweaking the
`accessibleFrom` predicate. I tried to not load them in ClassfileParser in the
first place, but that caused lots of errors because we do need the methods after
erasure.
0 commit comments