summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-6344-match.rs
blob: 4505a34c716c70e675d3b18c4b3d47962c90c944 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// run-pass
#![allow(non_shorthand_field_patterns)]

struct A { x: usize }

impl Drop for A {
    fn drop(&mut self) {}
}

pub fn main() {
    let a = A { x: 0 };

    match a {
        A { x : ref x } => {
            println!("{}", x)
        }
    }
}