rust/tests/ui/suggestions/silenced-binding-typo.fixed
Esteban Küber b0d17f35d9 Typo suggestion to change bindings with leading underscore
When encountering a binding that isn't found but has a typo suggestion
for a binding with a leading underscore, suggest changing the binding
definition instead of the use place.

Fix #60164.
2023-10-20 15:58:25 +00:00

6 lines
80 B
Rust

// run-rustfix
fn main() {
let x = 42; //~ HELP
let _y = x; //~ ERROR
}