Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / ASTMerge / anonymous-fields / Inputs / anonymous-fields2.cpp
blob28ea46d98711b4c0e50d50c5197facb439d25349
1 class A {
2 public:
3 struct { int foo; } f;
4 struct { int foo; } g;
5 };
7 inline int useA(A &a) {
8 return (a.f.foo + a.g.foo);