aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGuillaume Martres <smarter@ubuntu.com>2015-03-18 23:52:45 +0100
committerDmitry Petrashko <dmitry.petrashko@gmail.com>2015-05-01 13:26:21 +0200
commitb9a98a61cdbbc4ffe106fa0965b5175dbfc172f2 (patch)
treed8483aa94d8f6819540e3dc862275dc6d10ec2b1 /src
parent275c340b609ae113c93d8c004a2d8bd7be1b12c1 (diff)
downloaddotty-b9a98a61cdbbc4ffe106fa0965b5175dbfc172f2.tar.gz
dotty-b9a98a61cdbbc4ffe106fa0965b5175dbfc172f2.tar.bz2
dotty-b9a98a61cdbbc4ffe106fa0965b5175dbfc172f2.zip
Remove obsolete comment about t2667 failing
It was fixed by #390 and the test was added back in #408.
Diffstat (limited to 'src')
-rw-r--r--src/dotty/tools/dotc/transform/ExtensionMethods.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dotty/tools/dotc/transform/ExtensionMethods.scala b/src/dotty/tools/dotc/transform/ExtensionMethods.scala
index ae22adc39..787d68430 100644
--- a/src/dotty/tools/dotc/transform/ExtensionMethods.scala
+++ b/src/dotty/tools/dotc/transform/ExtensionMethods.scala
@@ -37,7 +37,7 @@ class ExtensionMethods extends MiniPhaseTransform with DenotTransformer with Ful
case ref: ClassDenotation if ref is ModuleClass =>
ref.linkedClass match {
case origClass: ClassSymbol if isDerivedValueClass(origClass) =>
- val cinfo = ref.classInfo // ./tests/pos/t2667.scala dies here for module class AnyVal$
+ val cinfo = ref.classInfo
val decls1 = cinfo.decls.cloneScope
ctx.atPhase(thisTransformer.next) { implicit ctx =>
for (decl <- origClass.classInfo.decls) {