1 2 3 4 5 6 7 8 9 10
union example_union { field1: u32, field2: u64, } unsafe fn go(u: example_union) -> u32 { u.field1 } fn main () { }