about summary refs log tree commit diff
path: root/tests/ui/structs-enums/module-qualified-struct-destructure.rs
blob: b90acb1b98c0dfeef64fdc56de72a0652b56ded9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//@ 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;
}