summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/compiler/scala/tools/nsc/transform/Flatten.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/transform/Flatten.scala b/src/compiler/scala/tools/nsc/transform/Flatten.scala
index 958c9819ee..f3aaadca45 100644
--- a/src/compiler/scala/tools/nsc/transform/Flatten.scala
+++ b/src/compiler/scala/tools/nsc/transform/Flatten.scala
@@ -97,7 +97,7 @@ abstract class Flatten extends InfoTransform {
case _ =>
tree
}
- assert(tree1.tpe != null, "type of " + tree1 + " is null") // debug
+ assert(tree1.tpe != null, tree1)// debug
tree1 setType flattened(tree1.tpe)
}