Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
parser
/
issues
/
issue-10392-2.rs
blob: 7f46c12ccf26095ee7c1cece3935fd0effe376da [
file
] [
log
] [
blame
] [
edit
]
//@ run-rustfix
pub
struct
A
{
pub
foo
:
isize
}
fn
a
()
->
A
{
panic
!()
}
fn
main
()
{
let
A
{
..,
}
=
a
();
//~ ERROR: expected `}`
}