xref: /llvm-project/clang/test/Modules/Inputs/anon-redecl/a.h (revision 76ea19641ec649c4d07dee5216d7d2a956bb4f9e)
1 struct X { union { int n; }; };
a(X x)2 inline int a(X x) { return x.n; }
3