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

Tune usage of resultConforms to prefer the chosen alternative #22730

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

smarter
Copy link
Member

@smarter smarter commented Mar 5, 2025

resultConforms should only make us change our mind when we're sure that the chosen alternative does not fit the result type but another alternative would. The problem is that due to approximations and adaptation, we can guess wrong on both counts.

In i22713 in particular, we guessed that the chosen alternative does not work (but it does because of Unit insertion) and that another alternative would, but it doesn't because resultConforms prefers false positives to false negatives (the result type is under-approximated to Nothing which is indeed a subtype of Unit).

We only really need to prefer false positives to false negatives when considering whether to discard the currently chosen alternative (because there's probably a good reason we chose it in the first place), so this commit introduces a parameter to resultConforms to control this.

Fixes #22713.

@smarter smarter marked this pull request as draft March 5, 2025 23:38
`resultConforms` should only make us change our mind when we're sure that the
chosen alternative does not fit the result type but another alternative would.
The problem is that due to approximations and adaptation, we can guess wrong on
both counts.

In i22713 in particular, we guessed that the chosen alternative does not
work (but it does because of Unit insertion) and that another alternative would,
but it doesn't because `resultConforms` prefers false positives to false
negatives (the result type is under-approximated to `Nothing` which is
indeed a subtype of `Unit`).

We only really need to prefer false positives to false negatives when
considering whether to discard the currently chosen alternative (because there's
probably a good reason we chose it in the first place), so this commit
introduces a parameter to `resultConforms` to control this.

Fixes scala#22713.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Regression in type inference
1 participant