summaryrefslogtreecommitdiff
path: root/src/compiler
diff options
context:
space:
mode:
authorAdriaan Moors <adriaan.moors@epfl.ch>2007-08-22 13:46:38 +0000
committerAdriaan Moors <adriaan.moors@epfl.ch>2007-08-22 13:46:38 +0000
commit20caac2baca22cd3cb71a7f21da5703e4ca6f09a (patch)
treef234bd36e7c14e362d2d5d87007334ad96720c19 /src/compiler
parente69edec6c715240cf71f4a555232ea18cd21e19f (diff)
downloadscala-20caac2baca22cd3cb71a7f21da5703e4ca6f09a.tar.gz
scala-20caac2baca22cd3cb71a7f21da5703e4ca6f09a.tar.bz2
scala-20caac2baca22cd3cb71a7f21da5703e4ca6f09a.zip
fixed 1275 by adding minimal early check to Nam...
fixed 1275 by adding minimal early check to Namers so that overriding of type members in refinements cannot change number of type parameters (in principle the full overriding checks should be performed at a later point, when they don't cause cyclicity errors -- this is TODO)
Diffstat (limited to 'src/compiler')
-rw-r--r--src/compiler/scala/tools/nsc/typechecker/Namers.scala19
1 files changed, 18 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/typechecker/Namers.scala b/src/compiler/scala/tools/nsc/typechecker/Namers.scala
index 2e5ab49907..e82252c2ee 100644
--- a/src/compiler/scala/tools/nsc/typechecker/Namers.scala
+++ b/src/compiler/scala/tools/nsc/typechecker/Namers.scala
@@ -671,7 +671,24 @@ trait Namers { self: Analyzer =>
TypeBounds(AllClass.tpe, AnyClass.tpe)
case tp => tp
}
- parameterizedType(tparamSyms, tp) //@M
+
+ def verifyOverriding(other: Symbol): Boolean = {
+ if(other.unsafeTypeParams.length != tparamSyms.length) {
+ context.error(tpsym.pos,
+ "The kind of "+tpsym.keyString+" "+tpsym.varianceString + tpsym.nameString+
+ " does not conform to the expected kind of " + other.defString + other.locationString + ".")
+ false
+ } else true
+ }
+
+ // @M: make sure overriding in refinements respects rudimentary kinding
+ // have to do this early, as otherwise we might get crashes: (see neg/bug1275.scala)
+ // suppose some parameterized type member is overridden by a type member w/o params,
+ // then appliedType will be called on a type that does not expect type args --> crash
+ if (tpsym.owner.isRefinementClass && // only needed in refinements
+ !tpsym.allOverriddenSymbols.forall{verifyOverriding(_)})
+ ErrorType
+ else parameterizedType(tparamSyms, tp)
}
def typeSig(tree: Tree): Type = {