aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/struct-expr-parse.rs
blob: 3c383a90ca4795fbdf1bb7f7d44edc10c6151ee3 (plain)
1
2
3
4
5
6
7
struct A { // { dg-warning "struct is never constructed" }
    a: u32
}

pub fn foo(a: u32) {
    (&A { a }.a, 1);
}