mirror of
https://git.proxmox.com/git/rustc
synced 2026-03-27 12:17:37 +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
|
|
}
|