llvm-project/clang/test/SemaCXX/template-specialization.cpp

6 lines
135 B
C++

// RUN: clang-cc -fsyntax-only -verify %s
// XFAIL
template<int N> void f(int (&array)[N]);
template<> void f<1>(int (&array)[1]) { }