Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
parser
/
pat-ref-enum.rs
blob: 412dd141de0eea542e204b2b6c74fb57e24530ab [
file
] [
log
] [
blame
] [
edit
]
fn
matcher
(
x
:
Option
<
isize
>)
{
match
x
{
ref
Some
(
i
)
=>
{}
//~ ERROR expected identifier, found enum pattern
None
=>
{}
}
}
fn
main
()
{}