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