blob: a0c0d1626ec45d3ddb19fa669834140ca43d7a8b [file] [log] [blame]
fn main() {
match "world" { //~ ERROR non-exhaustive patterns: `&_`
"hello" => {}
}
match "world" { //~ ERROR non-exhaustive patterns: `&_`
ref _x if false => {}
"hello" => {}
}
}