Skip to content

Commit ac7f9f2

Browse files
committed
Remove extraneous println
1 parent 5103f17 commit ac7f9f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/dotty/tools/dotc/typer/Typer.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ class Typer extends Namer with TypeAssigner with Applications with Implicits wit
297297
tree match {
298298
case tree @ Select(qual, _) if !qual.tpe.isStable =>
299299
val alt = typedSelect(tree, pt, Typed(qual, TypeTree(SkolemType(qual.tpe.widen))))
300-
/*typr.*/println(d"healed type: ${tree.tpe} --> $alt")
300+
typr.println(d"healed type: ${tree.tpe} --> $alt")
301301
alt.asInstanceOf[T]
302302
case _ =>
303303
ctx.error(d"unsafe instantiation of type ${tree.tpe}", tree.pos)

0 commit comments

Comments
 (0)