rust/tests/ui/suggestions/silenced-binding-typo.fixed

6 lines
81 B
Rust

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