We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
rust-analyzer version: 0.0.0 (d022e0e 2022-10-27) [compiled from master]
rustc version: 1.64.0 (a55dd71d5 2022-09-19)
relevant settings: Running on WSL
Code:
mod foo { pub struct Test; // <- Rename to Testing } use foo::Test as Tester; fn main() { let t = Tester; }
Result:
mod foo { pub struct Testing; } use foo::Testing as Tester; fn main() { let t = Testing; // <- Was also renamed }
The text was updated successfully, but these errors were encountered:
2c37e7d
Successfully merging a pull request may close this issue.
rust-analyzer version: 0.0.0 (d022e0e 2022-10-27) [compiled from master]
rustc version: 1.64.0 (a55dd71d5 2022-09-19)
relevant settings: Running on WSL
Code:
Result:
The text was updated successfully, but these errors were encountered: