Sign in
rust
/
rust-lang
/
rust
/
refs/heads/stable
/
.
/
tests
/
ui
/
pattern
/
usefulness
/
issue-30240.rs
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"
=>
{}
}
}