Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Modules / Inputs / template-specialization-visibility / a.h
blobe88205558726e17857f93e0f913557bcaabf97a7
1 #ifndef A_H
2 #define A_H
3 template<typename T> struct S;
4 template<typename U> struct T {
5 struct S;
6 enum E : int;
7 };
8 #endif