rust-analyzer/crates/ide-assists/src/tests
bors 829e77709e Auto merge of #15524 - vsrs:bind_unused_param, r=Veykril
Bind unused parameter assistant

This PR introduces a new **Bind unused parameter assistant**.

While we do have a QuickFix from `rustc` (prefixing the parameter with an underscore), it's sometimes more convenient to suppress the warning using the following approach:
```rust
 fn some_function(unused: i32) {}
```
->
```rust
fn some_function(unused: i32) {
    let _ = unused;
}
```
2023-09-08 09:12:31 +00:00
..
generated.rs Auto merge of #15524 - vsrs:bind_unused_param, r=Veykril 2023-09-08 09:12:31 +00:00
sourcegen.rs Remove outdated comment in sourcegen 2023-03-31 14:43:24 -04:00