llvm-for-llvmta/tools/clang/test/Modules/Inputs/redecl-templates/a.h

9 lines
180 B
C
Raw Permalink Normal View History

2022-04-25 13:02:35 +02:00
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>;