aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier Blanvillain <olivier.blanvillain@gmail.com>2017-04-11 13:15:02 +0200
committerOlivier Blanvillain <olivier.blanvillain@gmail.com>2017-04-11 13:16:50 +0200
commit92a9d05fd64ac97140aa0f01214c4738526383c3 (patch)
tree817deb1f0ff39ac3d53ccdc91d46a076c90ee8c9
parent4868fb29580a67c7a1560d5c1c7cc658e2634359 (diff)
downloaddotty-92a9d05fd64ac97140aa0f01214c4738526383c3.tar.gz
dotty-92a9d05fd64ac97140aa0f01214c4738526383c3.tar.bz2
dotty-92a9d05fd64ac97140aa0f01214c4738526383c3.zip
Fix master compilation
-rw-r--r--compiler/src/dotty/tools/dotc/ast/Desugar.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/src/dotty/tools/dotc/ast/Desugar.scala b/compiler/src/dotty/tools/dotc/ast/Desugar.scala
index 2722d91eb..013516cd5 100644
--- a/compiler/src/dotty/tools/dotc/ast/Desugar.scala
+++ b/compiler/src/dotty/tools/dotc/ast/Desugar.scala
@@ -432,7 +432,7 @@ object desugar {
if (targs.isEmpty) tycon else AppliedTypeTree(tycon, targs)
}
def product =
- if (arity > Definitions.MaxTupleArity) scalaDot(nme.Product.toTypeName)
+ if (arity > Definitions.MaxTupleArity) scalaDot(str.Product.toTypeName)
else productConstr(arity)
// Case classes and case objects get Product/ProductN parents