1 2 3 4 5 6 7 8
// ignore: https://github.com/jyn514/rcc/issues/53 // code: 1 struct s { int i; float f; union { int a; float b; } u; } m = { 1, 2.4, 3 }; int main() { return m.i; }