brintos

brintos / llvm-project-archived public Read only

0
0
Text · 173 B · 205483f Raw
9 lines · c
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<> int v<1>;9