Skip to content

Commit 2996fc6

Browse files
committed
Fix rebase breakage
1 parent c78bffb commit 2996fc6

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
@@ -367,7 +367,7 @@ class RefinedPrinter(_ctx: Context) extends PlainPrinter(_ctx) {
367367
case _ =>
368368
toText(name)
369369
}
370-
if (name.isType) typeText(txt)
370+
if (name.isTypeName) typeText(txt)
371371
else txt
372372
case tree @ Select(qual, name) =>
373373
if (qual.isType) toTextLocal(qual) ~ "#" ~ typeText(toText(name))

0 commit comments

Comments
 (0)