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 a2ae90e commit cc347b6Copy full SHA for cc347b6
compiler/src/dotty/tools/dotc/printing/PlainPrinter.scala
@@ -193,9 +193,9 @@ class PlainPrinter(_ctx: Context) extends Printer {
193
"<overloaded " ~ toTextRef(tp) ~ ">"
194
case tp: TypeRef =>
195
if (printWithoutPrefix.contains(tp.symbol))
196
- Str(selectionString(tp))
+ selectionString(tp.dealias.typeSymbol.namedType)
197
else
198
- toTextPrefixOf(tp) ~ selectionString(tp)
+ toTextPrefixOf(tp) ~ selectionString(tp.dealias.typeSymbol.namedType)
199
case tp: TermParamRef =>
200
ParamRefNameString(tp) ~ lambdaHash(tp.binder) ~ ".type"
201
case tp: TypeParamRef =>
0 commit comments