summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/typechecker/Duplicators.scala
diff options
context:
space:
mode:
authorAleksandar Prokopec <axel22@gmail.com>2012-06-18 19:33:06 +0200
committerAleksandar Prokopec <axel22@gmail.com>2012-06-18 19:33:06 +0200
commita83586a4815acd35df0801ed0e9f067e113c8664 (patch)
treef0efc810997d6d4089dadd5c443a00c10a63d09d /src/compiler/scala/tools/nsc/typechecker/Duplicators.scala
parent9a28ee1ffc085bc680c48b12ad632b9133adf020 (diff)
downloadscala-a83586a4815acd35df0801ed0e9f067e113c8664.tar.gz
scala-a83586a4815acd35df0801ed0e9f067e113c8664.tar.bz2
scala-a83586a4815acd35df0801ed0e9f067e113c8664.zip
Fix SI-4541.
Catch type errors when duplicating trees. In this case, to access a protected member from a specialized class is an error, so we would have to make the member public anyway. Better it is then to report an error and have the user make the field public explicitly. Review by @dragos.
Diffstat (limited to 'src/compiler/scala/tools/nsc/typechecker/Duplicators.scala')
-rw-r--r--src/compiler/scala/tools/nsc/typechecker/Duplicators.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/typechecker/Duplicators.scala b/src/compiler/scala/tools/nsc/typechecker/Duplicators.scala
index b7a6ea677e..6386273c9d 100644
--- a/src/compiler/scala/tools/nsc/typechecker/Duplicators.scala
+++ b/src/compiler/scala/tools/nsc/typechecker/Duplicators.scala
@@ -360,7 +360,7 @@ abstract class Duplicators extends Analyzer {
tree
case _ =>
- debuglog("Duplicators default case: " + tree.summaryString)
+ // log("Duplicators default case: " + tree.summaryString + " -> " + tree)
if (tree.hasSymbol && tree.symbol != NoSymbol && (tree.symbol.owner == definitions.AnyClass)) {
tree.symbol = NoSymbol // maybe we can find a more specific member in a subclass of Any (see AnyVal members, like ==)
}