summaryrefslogtreecommitdiff
path: root/test/SemaCXX/template-specialization.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/SemaCXX/template-specialization.cpp')
-rw-r--r--test/SemaCXX/template-specialization.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/test/SemaCXX/template-specialization.cpp b/test/SemaCXX/template-specialization.cpp
deleted file mode 100644
index e23a192d8034..000000000000
--- a/test/SemaCXX/template-specialization.cpp
+++ /dev/null
@@ -1,5 +0,0 @@
-// RUN: clang-cc -fsyntax-only -verify %s
-// XFAIL
-template<int N> void f(int (&array)[N]);
-
-template<> void f<1>(int (&array)[1]) { }