Skip to content

Commit 83ae00d

Browse files
committed
Update rebased
1 parent d42347f commit 83ae00d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/src/dotty/tools/dotc/typer/Applications.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ object Applications {
110110
}
111111

112112
def namedTupleOrProductTypes(tp: Type)(using Context): List[Type] =
113-
if tp.isNamedTupleType then tp.namedTupleElementTypes.map(_(1))
113+
if tp.isNamedTupleType then tp.namedTupleElementTypes(true).map(_(1))
114114
else productSelectorTypes(tp, NoSourcePosition)
115115

116116
def productSelectorTypes(tp: Type, errorPos: SrcPos)(using Context): List[Type] = {

0 commit comments

Comments
 (0)