Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Modules / Inputs / nested-template-default-arg-redecl / func.h
blob7a15c697da57bf8243f18529430ab9cf1b0f6060
1 #ifndef FUNC_H
2 #define FUNC_H
3 struct func_outer {
4 template <typename = int>
5 void func();
6 };
7 #endif