Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Special case NamedTuple.From for arguments derived from Tuple #22449

Merged
merged 3 commits into from
Jan 27, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions compiler/src/dotty/tools/dotc/core/TypeEval.scala
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,15 @@ object TypeEval:
nestedPairs(fieldLabels) :: nestedPairs(fieldTypes) :: Nil
else arg.widenDealias match
case arg @ defn.NamedTuple(_, _) => Some(arg)
case arg if arg.derivesFrom(defn.TupleClass) =>
val fieldTypesOpt = tupleElementTypes(arg)
fieldTypesOpt match
case Some(fieldTypes) =>
val fieldLabels = (for i <- 1 to fieldTypes.length yield ConstantType(Constant(s"_$i"))).toList
Some:
defn.NamedTupleTypeRef.appliedTo:
nestedPairs(fieldLabels) :: nestedPairs(fieldTypes) :: Nil
case _ => None
case _ => None

def constantFold1[T](extractor: Type => Option[T], op: T => Any): Option[Type] =
Expand Down
26 changes: 26 additions & 0 deletions tests/pos/i22036.scala
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
//> using options -experimental -language:experimental.namedTuples
import language.experimental.namedTuples

type Foo[T] = T
val x: NamedTuple.From[Tuple.Map[(Int, Int), Foo]] = ???
val res = x._1

type Z = NamedTuple.From[(Foo[Int], Foo[Int])]
val x2: Z = ???
val res2 = x2._1

val x3: Foo[NamedTuple.From[Tuple.Map[(Int, Int), Foo]]] = ???
val res3 = x3._1

def foo[T <: (Int, String)](tup: T): Int =
tup._1

def union[T](tup: (Int, String)
|(Int, String)
): Int =
tup._1

def intersect[T](tup: (Int, String)
& T
): Int =
tup._1
Loading