Skip to content

Commit dd95817

Browse files
committed
Fix rebase breakage
1 parent 8578fa1 commit dd95817

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/src/dotty/tools/dotc/printing/RefinedPrinter.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,7 @@ class RefinedPrinter(_ctx: Context) extends PlainPrinter(_ctx) {
366366
case _ =>
367367
toText(name)
368368
}
369-
if (name.isType) typeText(txt)
369+
if (name.isTypeName) typeText(txt)
370370
else txt
371371
case tree @ Select(qual, name) =>
372372
if (qual.isType) toTextLocal(qual) ~ "#" ~ typeText(toText(name))

0 commit comments

Comments
 (0)