Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Modules / Inputs / deferred-lookup / b.h
blob23925e2e93ce059fcb1e224c9359db560d96b949
1 namespace N { template<typename T> struct A { friend int f(A); }; }
2 namespace N { int f(int); }
3 namespace N { int f(int); }
4 #include "a.h"
5 namespace N { int f(int); }
6 inline int g() { return f(N::A<int>()); }