Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
parser
/
bind-struct-early-modifiers.rs
blob: c4b1937de104f491516280e2ec8e857cbbb58474 [
file
] [
log
] [
blame
] [
edit
]
fn
main
()
{
struct
Foo
{
x
:
isize
}
match
(
Foo
{
x
:
10
})
{
Foo
{
ref
x
:
ref
x
}
=>
{},
//~ ERROR expected `,`
_
=>
{}
}
}