Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Modules / Inputs / merge-var-template-def / b1.h
blob35cab9d01c8e501346a0eb6556bb36ef06ee6835
1 #ifndef B1_H
2 #define B1_H
3 template<typename T, T v>
4 struct S { static constexpr T value = v; };
5 template<typename T, T v>
6 constexpr T S<T, v>::value;
8 #include "a.h"
9 #endif