summaryrefslogtreecommitdiff
path: root/src/compiler
diff options
context:
space:
mode:
authorHubert Plociniczak <hubert.plociniczak@epfl.ch>2009-12-09 17:10:56 +0000
committerHubert Plociniczak <hubert.plociniczak@epfl.ch>2009-12-09 17:10:56 +0000
commit6bce02b8386357a4777f59394824d96d9e7a386d (patch)
tree9f20e7d78907fdbf2620954ff8b167f51e899915 /src/compiler
parent65db7124a7d016ff5e336cfeed637260badbf8ef (diff)
downloadscala-6bce02b8386357a4777f59394824d96d9e7a386d.tar.gz
scala-6bce02b8386357a4777f59394824d96d9e7a386d.tar.bz2
scala-6bce02b8386357a4777f59394824d96d9e7a386d.zip
More informative error message. no review
Diffstat (limited to 'src/compiler')
-rw-r--r--src/compiler/scala/tools/nsc/symtab/classfile/UnPickler.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/symtab/classfile/UnPickler.scala b/src/compiler/scala/tools/nsc/symtab/classfile/UnPickler.scala
index ee0576d654..3694b6fc27 100644
--- a/src/compiler/scala/tools/nsc/symtab/classfile/UnPickler.scala
+++ b/src/compiler/scala/tools/nsc/symtab/classfile/UnPickler.scala
@@ -198,7 +198,7 @@ abstract class UnPickler {
if (sym == NoSymbol && !owner.hasFlag(OVERLOADED)) {
errorMissingRequirement(
"reference " + (if (name.isTypeName) "type " else "value ") +
- name.decode + " of " + owner + " refers to nonexisting symbol.")
+ name.decode + " of " + owner.tpe.wide + " refers to nonexisting symbol.")
}
case NONEsym =>
sym = NoSymbol