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