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