Closed
Description
https://github.com/lampepfl/dotty/blob/master/src/dotty/tools/dotc/core/pickling/ClassfileParser.scala#L141-L144 those lines are dead code.
I guess, that the reason is different handling of owner
in scalac and dotty. For example for 'scalac' owner of class-path-loaded scala.collection.TraversableLike$WithFilter
will be scala.collection.TraversableLike
. But for dotty it would be scala.collection.
, that obviously has no type parameters.