summaryrefslogtreecommitdiff
path: root/sources/scala/tools/nsc/typechecker/RefChecks.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2005-06-17 12:49:08 +0000
committerMartin Odersky <odersky@gmail.com>2005-06-17 12:49:08 +0000
commitd8f34726bc5147f67ccb1f9f1377d4f503c556ae (patch)
tree849c704cd8c1c22a3dc2efb7344fcc8827173a1e /sources/scala/tools/nsc/typechecker/RefChecks.scala
parent7fd0b4b8c8db2b9e186904018a28f90fe35d085b (diff)
downloadscala-d8f34726bc5147f67ccb1f9f1377d4f503c556ae.tar.gz
scala-d8f34726bc5147f67ccb1f9f1377d4f503c556ae.tar.bz2
scala-d8f34726bc5147f67ccb1f9f1377d4f503c556ae.zip
*** empty log message ***
Diffstat (limited to 'sources/scala/tools/nsc/typechecker/RefChecks.scala')
-rwxr-xr-xsources/scala/tools/nsc/typechecker/RefChecks.scala3
1 files changed, 2 insertions, 1 deletions
diff --git a/sources/scala/tools/nsc/typechecker/RefChecks.scala b/sources/scala/tools/nsc/typechecker/RefChecks.scala
index 9f8ec0aa2f..50798d65a2 100755
--- a/sources/scala/tools/nsc/typechecker/RefChecks.scala
+++ b/sources/scala/tools/nsc/typechecker/RefChecks.scala
@@ -526,7 +526,7 @@ abstract class RefChecks extends Transform {
var tpe = tree.tpe;
while (!tpe.symbol.isClass) tpe = tpe.resultType;
assert(tpe.symbol hasFlag CASE);
- typedOperator(atPos(tree.pos)(Select(New(TypeTree(tpe)), tpe.symbol.primaryConstructor)))
+ typedOperator(atPos(tree.pos)(Select(New(TypeTree(tpe)), tpe.symbol.primaryConstructor)));
}
/* Check whether argument types conform to bounds of type parameters */
@@ -571,6 +571,7 @@ abstract class RefChecks extends Transform {
case TypeApply(fn, args) =>
checkBounds(fn.tpe.typeParams, args map (.tpe));
+ if (sym.isMethod && sym.hasFlag(CASE)) result = toConstructor;
case New(tpt) =>
enterReference(tree.pos, tpt.tpe.symbol);