summaryrefslogtreecommitdiffstats
path: root/tests/ui/suggestions/silenced-binding-typo.rs
blob: 6cadd5a93a7527eac048a56627493e68ad95d76c (plain)
1
2
3
4
5
// run-rustfix
fn main() {
    let _x = 42; //~ HELP
    let _y = x; //~ ERROR
}