We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bdf895c commit 1329832Copy full SHA for 1329832
compiler/src/dotty/tools/dotc/transform/init/Summarization.scala
@@ -311,7 +311,7 @@ object Summarization {
311
312
def classSummary(cls: ClassSymbol)(implicit env: Env): ClassSummary =
313
def extractParentOuters(parent: Type, source: Tree): (ClassSymbol, Potentials) = {
314
- val tref = parent.typeConstructor.asInstanceOf[TypeRef]
+ val tref = parent.typeConstructor.stripAnnots.asInstanceOf[TypeRef]
315
val parentCls = tref.classSymbol.asClass
316
if (tref.prefix != NoPrefix)
317
parentCls ->analyze(tref.prefix, source)._1
0 commit comments