summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/compiler/scala/tools/nsc/symtab/Types.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/symtab/Types.scala b/src/compiler/scala/tools/nsc/symtab/Types.scala
index 1c31a09bb9..9f10ab994b 100644
--- a/src/compiler/scala/tools/nsc/symtab/Types.scala
+++ b/src/compiler/scala/tools/nsc/symtab/Types.scala
@@ -1206,7 +1206,7 @@ A type's symbol should never be inspected directly.
else if (isHigherKinded)
PolyType(typeParams, transform(sym.info.resultType).normalize)
else {
- log("Error: normalizing "+this+" with mismatch between type params "+sym.info.typeParams+" and args "+args)
+ log("Error: normalizing "+sym.rawname+" with mismatch between type params "+sym.info.typeParams+" and args "+args)
//this
transform(sym.info.resultType).normalize // technically wrong, but returning `this' is even worse (cycle!)
// only happens when compiling `val x: Class' with -Xgenerics,