• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 struct X { union { int n; }; };
c(X x)2 inline int c(X x) { return x.n; }
3