diff --git a/compiler/src/dotty/tools/dotc/core/tasty/TreePickler.scala b/compiler/src/dotty/tools/dotc/core/tasty/TreePickler.scala index e652d68f1f51..d70b56fca43d 100644 --- a/compiler/src/dotty/tools/dotc/core/tasty/TreePickler.scala +++ b/compiler/src/dotty/tools/dotc/core/tasty/TreePickler.scala @@ -203,7 +203,7 @@ class TreePickler(pickler: TastyPickler, attributes: Attributes) { else writeByte(if (tpe.isType) TYPEREF else TERMREF) pickleNameAndSig(sym.name, tpe.signature, sym.targetName) - pickleType(tpe.prefix) + pickleType(tpe.prefix) } if (sym.is(Flags.Package)) { writeByte(if (tpe.isType) TYPEREFpkg else TERMREFpkg)