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