mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-16 11:34:02 +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
|
|
}
|