aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/core/SymDenotations.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2015-12-02 10:58:44 +0100
committerMartin Odersky <odersky@gmail.com>2015-12-06 16:09:20 +0100
commitf89b5628a66442edcc8c31193a559c6b5c32e837 (patch)
tree9f68cac5c14258449088d1021016377e7276c53b /src/dotty/tools/dotc/core/SymDenotations.scala
parent0fde4b4902f81f9a020dbf460925596a276ab328 (diff)
downloaddotty-f89b5628a66442edcc8c31193a559c6b5c32e837.tar.gz
dotty-f89b5628a66442edcc8c31193a559c6b5c32e837.tar.bz2
dotty-f89b5628a66442edcc8c31193a559c6b5c32e837.zip
Add missing type params in test
Diffstat (limited to 'src/dotty/tools/dotc/core/SymDenotations.scala')
-rw-r--r--src/dotty/tools/dotc/core/SymDenotations.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dotty/tools/dotc/core/SymDenotations.scala b/src/dotty/tools/dotc/core/SymDenotations.scala
index d7fa183c9..cc201b66b 100644
--- a/src/dotty/tools/dotc/core/SymDenotations.scala
+++ b/src/dotty/tools/dotc/core/SymDenotations.scala
@@ -446,7 +446,7 @@ object SymDenotations {
/** is this symbol a trait representing a type lambda? */
final def isLambdaTrait(implicit ctx: Context): Boolean =
- isClass && name.startsWith(tpnme.LambdaPrefix) && owner == defn.ScalaPackageClass
+ isClass && name.startsWith(tpnme.hkLambdaPrefix) && owner == defn.ScalaPackageClass
/** Is this symbol a package object or its module class? */
def isPackageObject(implicit ctx: Context): Boolean = {