Sign in
rust
/
rust
/
8eb7c58dbb7b32701af113bc58722d0d1fefb1eb
/
.
/
src
/
test
/
ui
/
parser
/
bind-struct-early-modifiers.rs
blob: c4b1937de104f491516280e2ec8e857cbbb58474 [
file
]
fn
main
()
{
struct
Foo
{
x
:
isize
}
match
(
Foo
{
x
:
10
})
{
Foo
{
ref
x
:
ref
x
}
=>
{},
//~ ERROR expected `,`
_
=>
{}
}
}