aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/issue-1006.rs
blob: 7f565deaef3308a7a2daf1d5656d450f8aacf6f4 (plain)
1
2
3
4
5
6
7
8
9
10
// { dg-options "-w" }
union B {
    a: A,
    b: f32,
}

struct A {
    data: i32,
    len: usize,
}