[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / Modules / Inputs / merge-var-template-def / b2.h
blob6ab87c2fa718cc659c3180f2694058089d232432
1 #ifndef B2_H
2 #define B2_H
4 template<typename T, T v>
5 struct S { static constexpr T value = v; };
6 template<typename T, T v>
7 constexpr T S<T, v>::value;
9 #endif