blob: b3bb08d7e6a21172d55efe1f872d6b07464f25a8 [file] [log] [blame]
Daniel Dunbard7d5f022009-03-24 02:24:46 +00001// RUN: clang-cc -fsyntax-only -verify %s
Douglas Gregord6fb7ef2008-12-18 19:37:40 +00002template<int N> void f(int (&array)[N]);
3
4template<> void f<1>(int (&array)[1]) { }