1template<int N> struct A;
2template<> struct A<1>;
3
4template<int N> constexpr void f();
5template<> constexpr void f<1>();
6
7template<int N> extern int v;
8template<> extern int v<1>;
9