Skip to content

Fix #7075: Fix implicit resolution spec #7454

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
merged 1 commit into from
Oct 28, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/docs/reference/changed-features/implicit-resolution.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,9 +100,9 @@ affect implicits on the language level.
```
7. The rule for picking a _most specific_ alternative among a set of overloaded or implicit
alternatives is refined to take inferable parameters into account. All else
being equal, an alternative that takes more inferable parameters is taken to be more specific
than an alternative that takes fewer. If both alternatives take the same number of
inferable parameters, we try to choose between them as if they were methods with regular parameters.
being equal, an alternative that takes some implicit parameters is taken to be less specific
than an alternative that takes none. If both alternatives take implicit parameters, we try
to choose between them as if they were methods with regular parameters.
The following paragraph in the SLS is affected by this change:

_Original version:_
Expand Down