1 struct X { union { int n; }; };
b(X x)2 inline int b(X x) { return x.n; }
3