Sign in
android
/
toolchain
/
rustc
/
32f7835b4f844d645621e83c89a3178ef87b0d69
/
.
/
src
/
test
/
ui
/
parser
/
issue-10392-2.rs
blob: 30628ae31c3bdab3ef901214647fb466f2d28e71 [
file
] [
log
] [
blame
]
// run-rustfix
pub
struct
A
{
pub
foo
:
isize
}
fn
a
()
->
A
{
panic
!()
}
fn
main
()
{
let
A
{
..,
}
=
a
();
//~ ERROR: expected `}`
}