rust-analyzer/crates/ide-diagnostics
A4-Tacks 4353624cc0
Fix fixes for unused raw variables
Example
---
```
fn main() {
    let $0r#type = 2;
}
```

**Before this PR**:

```rust
fn main() {
    let _r#type = 2;
}
```

**After this PR**:

```rust
fn main() {
    let _type = 2;
}
```
2025-09-25 19:58:45 +08:00
..
src Fix fixes for unused raw variables 2025-09-25 19:58:45 +08:00
Cargo.toml Don't run doctests 2025-06-23 00:50:22 +03:00