]> git.proxmox.com Git - rustc.git/blame - src/test/ui/structs-enums/module-qualified-struct-destructure.rs
Update unsuspicious file list
[rustc.git] / src / test / ui / structs-enums / module-qualified-struct-destructure.rs
CommitLineData
b7449926 1// run-pass
c34b1796
AL
2// pretty-expanded FIXME #23616
3
223e47cc
LB
4mod m {
5 pub struct S {
c34b1796
AL
6 pub x: isize,
7 pub y: isize
223e47cc
LB
8 }
9}
10
11pub fn main() {
12 let x = m::S { x: 1, y: 2 };
1a4d82fc 13 let m::S { x: _a, y: _b } = x;
223e47cc 14}