freebsd-dev/test/SemaCXX/template-specialization.cpp
2009-06-02 17:58:47 +00:00

5 lines
126 B
C++

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