Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Modules / Inputs / merge-dependent-friends / a.h
blob44b1c1db568858477632d78c89918f2a2e5de3cc
1 namespace N { template<typename T> struct A { friend int f(A); }; }
2 int a = f(N::A<int>());