Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Modules / Inputs / cxx-templates-d.h
blob1fb1a2282b96fbe7425d712b6a2e05669a0a2889
1 @import cxx_templates_common;
3 inline int InstantiateWithAnonymousDeclsD(WithAnonymousDecls<char> x) { return (x.k ? x.a : x.b) + (x.k ? x.s.c : x.s.d) + x.e; }
5 namespace TestInjectedClassName {
6 template<typename T> struct X { X(); };
7 typedef X<int> D;
8 inline D UseD() { return D(); }