llvm-project/clang/test/SemaTemplate/ext_ms_template_spec.cpp
Richard Smith c660c8f5d2 Implement C++ DR727, which permits explicit specializations at class scope.
More generally, this permits a template to be specialized in any scope in which
it could be defined, so this also supersedes DR44 and DR374 (the latter of
which we previously only implemented in C++11 mode onwards due to unclarity as
to whether it was a DR).

llvm-svn: 327705
2018-03-16 13:36:56 +00:00

34 lines
1.4 KiB
C++

// RUN: %clang_cc1 -fsyntax-only -fms-extensions -std=c++11 -verify %s
namespace A {
template <class T>
class ClassTemplate; // expected-note {{explicitly specialized declaration is here}}
template <class T1, class T2>
class ClassTemplatePartial; // expected-note {{explicitly specialized declaration is here}}
template <typename T> struct X {
struct MemberClass; // expected-note {{explicitly specialized declaration is here}}
enum MemberEnumeration; // expected-note {{explicitly specialized declaration is here}} // expected-error {{ISO C++ forbids forward references to 'enum' types}}
};
}
namespace B {
template <>
class A::ClassTemplate<int>; // expected-warning {{class template specialization of 'ClassTemplate' not in a namespace enclosing 'A' is a Microsoft extension}}
template <class T1>
class A::ClassTemplatePartial<T1, T1 *> {}; // expected-warning {{class template partial specialization of 'ClassTemplatePartial' not in a namespace enclosing 'A' is a Microsoft extension}}
template <>
struct A::X<int>::MemberClass; // expected-warning {{member class specialization of 'MemberClass' not in class 'X' or an enclosing namespace is a Microsoft extension}}
template <>
enum A::X<int>::MemberEnumeration; // expected-warning {{member enumeration specialization of 'MemberEnumeration' not in class 'X' or an enclosing namespace is a Microsoft extension}} // expected-error {{ISO C++ forbids forward references to 'enum' types}}
}