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
mut
rust-analyzer version: rust-analyzer 1.82.0-nightly (1f12b9b0 2024-08-27)
rustc version: rustc 1.82.0-nightly (1f12b9b0f 2024-08-27)
editor or extension: Vim 9.1 coc-rust-analyzer
code snippet to reproduce:
fn main() { let mut x = &mut 2; &mut x; &mut *x; }
use .call snippets in x;:
.call
x;
fn main() { let mut x = &mut 2; (&x); &mut *(x); }
expect code:
fn main() { let mut x = &mut 2; (&mut x); (&mut *x); }
The text was updated successfully, but these errors were encountered:
@rustbot claim
Sorry, something went wrong.
f30d4ea
ChayimFriedman2
Successfully merging a pull request may close this issue.
rust-analyzer version: rust-analyzer 1.82.0-nightly (1f12b9b0 2024-08-27)
rustc version: rustc 1.82.0-nightly (1f12b9b0f 2024-08-27)
editor or extension: Vim 9.1 coc-rust-analyzer
code snippet to reproduce:
use
.call
snippets inx;
:expect code:
The text was updated successfully, but these errors were encountered: