blob: 963dccaccd18679e1cd14dcc9d29896a9c06aa55 [file] [log] [blame]
Chris Lattner5abd1b02009-07-17 23:48:38 +00001// RN: clang-cc -fsyntax-only -verify %s
2// RUN: false
Douglas Gregore53060f2009-06-25 22:08:12 +00003// XFAIL
Douglas Gregord6fb7ef2008-12-18 19:37:40 +00004template<int N> void f(int (&array)[N]);
5
6template<> void f<1>(int (&array)[1]) { }