aboutsummaryrefslogtreecommitdiff
path: root/test/CXX/temp/temp.decls/p3.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/CXX/temp/temp.decls/p3.cpp')
-rw-r--r--test/CXX/temp/temp.decls/p3.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/test/CXX/temp/temp.decls/p3.cpp b/test/CXX/temp/temp.decls/p3.cpp
deleted file mode 100644
index 41811ff16531..000000000000
--- a/test/CXX/temp/temp.decls/p3.cpp
+++ /dev/null
@@ -1,7 +0,0 @@
-// RUN: %clang_cc1 -std=c++11 -fsyntax-only -verify %s
-
-template<typename T> using A = int;
-template<typename T> using A<T*> = char; // expected-error {{partial specialization of alias templates is not permitted}}
-template<> using A<char> = char; // expected-error {{explicit specialization of alias templates is not permitted}}
-template using A<char> = char; // expected-error {{explicit instantiation of alias templates is not permitted}}
-using A<char> = char; // expected-error {{name defined in alias declaration must be an identifier}}