3 lines
66 B
C
3 lines
66 B
C
|
struct X { union { int n; }; };
|
||
|
inline int a(X x) { return x.n; }
|