From f27e5a09a0d815b8a4814152954ff87dadfdefc0 Mon Sep 17 00:00:00 2001 From: ed Date: Tue, 2 Jun 2009 17:58:47 +0000 Subject: Import Clang, at r72732. --- test/SemaCXX/template-specialization.cpp | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 test/SemaCXX/template-specialization.cpp (limited to 'test/SemaCXX/template-specialization.cpp') diff --git a/test/SemaCXX/template-specialization.cpp b/test/SemaCXX/template-specialization.cpp new file mode 100644 index 0000000..b3bb08d --- /dev/null +++ b/test/SemaCXX/template-specialization.cpp @@ -0,0 +1,4 @@ +// RUN: clang-cc -fsyntax-only -verify %s +template void f(int (&array)[N]); + +template<> void f<1>(int (&array)[1]) { } -- cgit v1.1