1 2 3 4 5 6 7 8 9 10 11
union a { float _Complex b; long long c; }; void g(union a); void e() { union a f = {1.0f}; g(f); }