mirror of
https://github.com/rust-lang/rust.git
synced 2026-03-19 15:58:51 +00:00
8 lines
113 B
Rust
8 lines
113 B
Rust
struct A { foo: isize }
|
|
|
|
fn a() -> A { panic!() }
|
|
|
|
fn main() {
|
|
let A { , } = a(); //~ ERROR expected ident
|
|
}
|