xref: /llvm-project/clang/test/Modules/Inputs/redecl-templates/a.h (revision 9a88aa0e2b6d09c7c7932e14224632b2033ad403)
1 template<int N> struct A;
2 template<> struct A<1>;
3 
4 template<int N> constexpr void f();
5 template<> constexpr void f<1>();
6 
7 template<int N> extern int v;
8 template<> int v<1>;
9