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

fix: Fix IDE resolution of use inside a body #19094

Merged
merged 2 commits into from
Feb 5, 2025

Conversation

ChayimFriedman2
Copy link
Contributor

@ChayimFriedman2 ChayimFriedman2 commented Feb 4, 2025

We stopped the expression search too early because use is an item.

I thought it'll be complicated, but it turned out to be easy.

Fixes #18286.

We stopped the expression search too early because `use` is an item.
@rustbot rustbot added the S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. label Feb 4, 2025
The reason this test passed previously is not because it was working as intended, but because prior to the previous commit we did not resolve the `use` at all!

Now, `use self as _` is invalid code anyway (it prints E0429), and because we fallback to the value namespace if we can't resolve in the type namespace (which is a reasonable behavior), this test now actually fails.

I don't think we want to change the fallback, so I removed `use self as _` and instead added a new test, where the value can be resolved in the type namespace.
@lnicola lnicola added this pull request to the merge queue Feb 5, 2025
Merged via the queue into rust-lang:master with commit 2ad4ec5 Feb 5, 2025
9 checks passed
@ChayimFriedman2 ChayimFriedman2 deleted the use-body branch February 5, 2025 09:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
S-waiting-on-review Status: Awaiting review from the assignee but also interested parties.
Projects
None yet
4 participants