about summary refs log tree commit diff
path: root/compiler/rustc_codegen_llvm/src
diff options
context:
space:
mode:
authorA4-Tacks <wdsjxhno1001@163.com>2025-09-25 19:58:45 +0800
committerA4-Tacks <wdsjxhno1001@163.com>2025-09-25 19:58:45 +0800
commita9637efa275767c270829579f5282e5585043d19 (patch)
treeb8611642c4f211b5e7c4070bdb1ece5a75ec397f /compiler/rustc_codegen_llvm/src
parentda9831cc04b85faf584318e79dea00b4aa16ec59 (diff)
downloadrust-a9637efa275767c270829579f5282e5585043d19.tar.gz
rust-a9637efa275767c270829579f5282e5585043d19.zip
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;
}
```
Diffstat (limited to 'compiler/rustc_codegen_llvm/src')
0 files changed, 0 insertions, 0 deletions