aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/issue-3929-1.rs
blob: 3d7b0568b55c6277100c0e509caae98b781ed404 (plain)
1
2
3
4
5
6
7
8
9
// { dg-options "-w" }
struct S();

fn main() {
    let s = S{};
    match s {
        S{..} => {}
    }
}