diff options
| author | A4-Tacks <wdsjxhno1001@163.com> | 2025-09-25 19:58:45 +0800 |
|---|---|---|
| committer | A4-Tacks <wdsjxhno1001@163.com> | 2025-09-25 19:58:45 +0800 |
| commit | a9637efa275767c270829579f5282e5585043d19 (patch) | |
| tree | b8611642c4f211b5e7c4070bdb1ece5a75ec397f /compiler/rustc_codegen_llvm/src | |
| parent | da9831cc04b85faf584318e79dea00b4aa16ec59 (diff) | |
| download | rust-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
