Clang Project

clang_source_code/test/Modules/Inputs/anon-redecl/a.h
1struct X { union { int n; }; };
2inline int a(X x) { return x.n; }
3