-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Try to instantiate TypeVars inside pt when possible
#24231
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
Merged
noti0na1
merged 6 commits into
scala:main
from
dotty-staging:fix-function-type-inference-in-union
Nov 3, 2025
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
f3aea49
Try to instantiate `pt` if this is possible by looking into union/int…
noti0na1 5b03dca
Refactor type instantiation logic when typing function values to hand…
noti0na1 0b80a02
Update comments; add test cases for function type inference with unio…
noti0na1 abb7d87
Try to only instantiate one type variable bounded function types
noti0na1 048151d
Match the single TypeVar case with the previous logic
noti0na1 d71d682
Update compiler/src/dotty/tools/dotc/typer/Typer.scala
noti0na1 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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,42 @@ | ||
|
|
||
| def f[T](x: T): T = ??? | ||
| def f2[T](x: T | T): T = ??? | ||
| def f3[T](x: T | Null): T = ??? | ||
| def f4[T](x: Int | T): T = ??? | ||
|
|
||
| trait MyOption[+T] | ||
|
|
||
| object MyOption: | ||
| def apply[T](x: T | Null): MyOption[T] = ??? | ||
|
|
||
| def test = | ||
| val g: AnyRef => Boolean = f { | ||
| x => x eq null // ok | ||
| } | ||
| val g2: AnyRef => Boolean = f2 { | ||
| x => x eq null // ok | ||
| } | ||
| val g3: AnyRef => Boolean = f3 { | ||
| x => x eq null // was error | ||
| } | ||
| val g4: AnyRef => Boolean = f4 { | ||
| x => x eq null // was error | ||
| } | ||
|
|
||
| val o1: MyOption[String] = MyOption(null) | ||
| val o2: MyOption[String => Boolean] = MyOption { | ||
| x => x.length > 0 | ||
| } | ||
| val o3: MyOption[(String, String) => Boolean] = MyOption { | ||
| (x, y) => x.length > y.length | ||
| } | ||
|
|
||
|
|
||
| class Box[T] | ||
| val box: Box[Unit] = ??? | ||
| def ff1[T, U](x: T | U, y: Box[U]): T = ??? | ||
| def ff2[T, U](x: T & U): T = ??? | ||
|
|
||
| def test2 = | ||
| val a1: Any => Any = ff1(x => x, box) | ||
| val a2: Any => Any = ff2(x => x) |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.