aboutsummaryrefslogtreecommitdiff
path: root/test/SemaCXX/template-specialization.cpp
blob: 5442514abc9a36c7a8ae77a429834431388369d9 (plain)
1
2
3
4
// RUN: clang -fsyntax-only -verify %s
template<int N> void f(int (&array)[N]);

template<> void f<1>(int (&array)[1]) { }