-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Normalise mirrorType for mirror Synthesis (#19199)
If `MirrorSource.reduce` is given a proxy to an unreduced match type, it will simply get its supertype `Any`. We need to normalise the `mirroredType` before attempting to reduce it to a kind of mirror source. Fix #19198
- Loading branch information
Showing
2 changed files
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import deriving.Mirror | ||
import compiletime.summonInline | ||
|
||
inline def check1[Tps <: NonEmptyTuple]: Unit = | ||
summonInline[Mirror.Of[Tuple.Head[Tps]]] | ||
|
||
inline def check2[Tps <: NonEmptyTuple]: Unit = | ||
type FromType = Tuple.Head[Tps] | ||
summonInline[Mirror.Of[FromType]] | ||
|
||
@main def Test: Unit = | ||
check1[Option[Int] *: EmptyTuple] // Ok | ||
check2[Option[Int] *: EmptyTuple] // Error: FromType is widened to Any in Syntheziser |