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