-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Turn some calls to underlying
into superType
.
#15455
Conversation
@@ -5,20 +5,20 @@ scala> object Foo2 { type T[+A] = [B] =>> (A, B) } | |||
scala> object Foo3 { type T[+A] = [B] =>> [C] =>> (A, B) } | |||
// defined object Foo3 | |||
scala> ((1, 2): Foo1.T[Int]): Foo1.T[Any] | |||
val res0: (Any, Int) = (1,2) | |||
val res0: Foo1.T[Any] = (1,2) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's nice
To fix the MiMa tests, we should be able to re-run the tests after #15457 is merged (no-rebase needed). |
The fixed frontend dealiases less in the inferred types of i6474, which is a good thing.
test performance please |
performance test scheduled: 1 job(s) in queue, 0 running. |
Performance test finished successfully: Visit https://dotty-bench.epfl.ch/15455/ to see the changes. Benchmarks is based on merging with main (f58c158) |
test performance please |
performance test scheduled: 1 job(s) in queue, 0 running. |
Performance test finished successfully: Visit https://dotty-bench.epfl.ch/15455/ to see the changes. Benchmarks is based on merging with main (4cb967f) |
Based on #15453