You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
180 B
9 lines
180 B
4 months ago
|
template<int N> struct A;
|
||
|
template<> struct A<1>;
|
||
|
|
||
|
template<int N> constexpr void f();
|
||
|
template<> constexpr void f<1>();
|
||
|
|
||
|
template<int N> extern int v;
|
||
|
template<> extern int v<1>;
|