-
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.
fix regression: inline match crash when rhs uses private inlined methods
[Cherry-picked a2c0519]
- Loading branch information
1 parent
0b4da10
commit c856154
Showing
4 changed files
with
27 additions
and
1 deletion.
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
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,17 @@ | ||
import scala.deriving.Mirror | ||
|
||
trait NamedCodec[A, R] | ||
|
||
object NamedCodecPlatform { | ||
|
||
final class Builder[R]() { | ||
inline def of[T](using m: Mirror.Of[T]): NamedCodec[T, R] = | ||
inline m match { | ||
case s: Mirror.SumOf[T] => sumInst(s) | ||
case _: Mirror.ProductOf[T] => productInst | ||
} | ||
|
||
private inline def productInst[T]: NamedCodec[T, R] = ??? | ||
private inline def sumInst[T](m: Mirror.SumOf[T]): NamedCodec[T, R] = ??? | ||
} | ||
} |
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,8 @@ | ||
enum Data { | ||
case A, B, C | ||
} | ||
|
||
@main def Test = { | ||
val builder: NamedCodecPlatform.Builder[Any] = ??? | ||
builder.of[Data] | ||
} |