Skip to content

Commit 92a9d05

Browse files
Fix master compilation
1 parent 4868fb2 commit 92a9d05

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/src/dotty/tools/dotc/ast/Desugar.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@ object desugar {
432432
if (targs.isEmpty) tycon else AppliedTypeTree(tycon, targs)
433433
}
434434
def product =
435-
if (arity > Definitions.MaxTupleArity) scalaDot(nme.Product.toTypeName)
435+
if (arity > Definitions.MaxTupleArity) scalaDot(str.Product.toTypeName)
436436
else productConstr(arity)
437437

438438
// Case classes and case objects get Product/ProductN parents

0 commit comments

Comments
 (0)