[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / Modules / Inputs / redecl-templates / a.h
blobfd25fcf0768d2d34b545b15576892ae008a4e9fc
1 template<int N> struct A;
2 template<> struct A<1>;
4 template<int N> constexpr void f();
5 template<> constexpr void f<1>();
7 template<int N> extern int v;
8 template<> extern int v<1>;