mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-15 00:41:27 +00:00
10 lines
138 B
Plaintext
10 lines
138 B
Plaintext
//@ run-rustfix
|
|
|
|
pub struct A { pub foo: isize }
|
|
|
|
fn a() -> A { panic!() }
|
|
|
|
fn main() {
|
|
let A { .. } = a(); //~ ERROR: expected `}`
|
|
}
|