mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 13:57:24 +00:00
15 lines
210 B
Rust
15 lines
210 B
Rust
// run-pass
|
|
// pretty-expanded FIXME #23616
|
|
|
|
mod m {
|
|
pub struct S {
|
|
pub x: isize,
|
|
pub y: isize
|
|
}
|
|
}
|
|
|
|
pub fn main() {
|
|
let x = m::S { x: 1, y: 2 };
|
|
let m::S { x: _a, y: _b } = x;
|
|
}
|