aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/issue-2567-3.rs
blob: 09efaf0af8bea193791f2f3547d214188dea56e8 (plain)
1
2
3
4
5
6
7
8
// { dg-options "-w" }
enum Empty {}

fn foo(x: Empty) {
    match x {
        // empty
    }
}