You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#[tokio::main]
async fn main() {
let word ="world";
println!("hello {}", word);
}
If I'm trying to rename local variable "word" to "word1" in line 3, we expect the variable referenced in line 4 should be renamed, but nothing happened .
rust-analyzer version: rust-analyzer version: 0.3.1402
rustc version: rustc 1.67.1
relevant settings: N/A
Consider following code:
If I'm trying to rename local variable "word" to "word1" in line 3, we expect the variable referenced in line 4 should be renamed, but nothing happened .
code that we expected:
but code that we got:
The text was updated successfully, but these errors were encountered: