aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/issue-3876.rs
blob: 17b1590590e0b2d35447c158c52949f0a30c7be5 (plain)
1
2
3
4
5
6
7
8
enum test {
    A(i32),
}

fn fun(x: i32) {
    test::A { x }
    // { dg-error "unknown field" "" { target *-*-* } .-1 }
}