aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/torture/unused_struct.rs
blob: ba9ec3250cf3a3d0e01083b027ce5de758cb1249 (plain)
1
2
3
4
5
6
7
struct Foo {
    // { dg-warning "struct is never constructed" "" { target *-*-* } .-1 }
    one: i32,
    two: i32,
}

fn main() {}