1comptime { 2 var f = Foo{ .int = 42 }; 3 f.float = 12.34; 4} 5 6const Foo = union { 7 float: f32, 8 int: u32, 9}; 10 11// test_error=access of union field 'float' while field 'int' is active