summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/typechecker/RefChecks.scala
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2014-02-13 11:44:14 +0100
committerJason Zaugg <jzaugg@gmail.com>2014-02-13 11:44:14 +0100
commitc83e01d47d941265fa5415c0f29a884c904fdfa0 (patch)
tree5e266fdffd2dad974a8120b266c73c2f89914369 /src/compiler/scala/tools/nsc/typechecker/RefChecks.scala
parentd1c0b359ede63e9e5f5dc230d3ac354c9680c048 (diff)
parent436bbbe1b3168f18ccf6dee81cf4a8283c2daaec (diff)
downloadscala-c83e01d47d941265fa5415c0f29a884c904fdfa0.tar.gz
scala-c83e01d47d941265fa5415c0f29a884c904fdfa0.tar.bz2
scala-c83e01d47d941265fa5415c0f29a884c904fdfa0.zip
Merge pull request #3389 from retronym/ticket/8134-2
SI-8134 SI-5954 Fix companions in package object under separate comp.
Diffstat (limited to 'src/compiler/scala/tools/nsc/typechecker/RefChecks.scala')
-rw-r--r--src/compiler/scala/tools/nsc/typechecker/RefChecks.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/typechecker/RefChecks.scala b/src/compiler/scala/tools/nsc/typechecker/RefChecks.scala
index 02dd63f011..916b8a3e0c 100644
--- a/src/compiler/scala/tools/nsc/typechecker/RefChecks.scala
+++ b/src/compiler/scala/tools/nsc/typechecker/RefChecks.scala
@@ -858,7 +858,7 @@ abstract class RefChecks extends InfoTransform with scala.reflect.internal.trans
val baseClass = clazz.info.baseTypeSeq(i).typeSymbol
seenTypes(i) match {
case Nil =>
- println("??? base "+baseClass+" not found in basetypes of "+clazz)
+ devWarning(s"base $baseClass not found in basetypes of $clazz. This might indicate incorrect caching of TypeRef#parents.")
case _ :: Nil =>
;// OK
case tp1 :: tp2 :: _ =>