diff options
| author | A4-Tacks <wdsjxhno1001@163.com> | 2025-09-21 11:00:00 +0800 |
|---|---|---|
| committer | A4-Tacks <wdsjxhno1001@163.com> | 2025-09-21 11:05:10 +0800 |
| commit | 1525bf3e8dcd1e800ec5602030bf01e39dcd6137 (patch) | |
| tree | ae0042b9e9552d016c411d0c70a5b5d88488cd26 /compiler/rustc_mir_transform/src/coverage/mod.rs | |
| parent | c8182c4ae3f40b77e12db4980433ca1a9a1b59a1 (diff) | |
| download | rust-1525bf3e8dcd1e800ec5602030bf01e39dcd6137.tar.gz rust-1525bf3e8dcd1e800ec5602030bf01e39dcd6137.zip | |
Fix not applicable on trailing comma for remove_dbg
`remove_dbg` not applicable for whitespaces after trailing comma
Example
---
```rust
fn foo() {
dbg!(
bar(),
);
}
```
**Before this PR**:
Assist not applicable
**After this PR**:
```rust
fn foo() {
bar();
}
```
Diffstat (limited to 'compiler/rustc_mir_transform/src/coverage/mod.rs')
0 files changed, 0 insertions, 0 deletions
