blob: 5442514abc9a36c7a8ae77a429834431388369d9 [file] [log] [blame]
// RUN: clang -fsyntax-only -verify %s
template<int N> void f(int (&array)[N]);
template<> void f<1>(int (&array)[1]) { }