(root)/
gcc-13.2.0/
gcc/
testsuite/
rust/
compile/
unsafe9.rs
union U {
    a: i32,
    b: f32,
    c: u8,
}

fn main() {
    let u = U { a: 14 };
    let _ = u.a; // { dg-error "access to union" }
}