mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-04 12:44:40 +00:00
10 lines
138 B
Rust
10 lines
138 B
Rust
// run-rustfix
|
|
|
|
pub struct A { pub foo: isize }
|
|
|
|
fn a() -> A { panic!() }
|
|
|
|
fn main() {
|
|
let A { .., } = a(); //~ ERROR: expected `}`
|
|
}
|