]> granicus.if.org Git - clang/commitdiff
PR15633: Note that we are EnteringContext when parsing the nested name
authorRichard Smith <richard-llvm@metafoo.co.uk>
Mon, 1 Apr 2013 21:43:41 +0000 (21:43 +0000)
committerRichard Smith <richard-llvm@metafoo.co.uk>
Mon, 1 Apr 2013 21:43:41 +0000 (21:43 +0000)
specifier for an enumeration. Also fix a crash-on-invalid if a non-dependent
name specifier is used to declare an enum template.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@178502 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Basic/DiagnosticCommonKinds.td
include/clang/Basic/DiagnosticParseKinds.td
lib/Parse/ParseDecl.cpp
lib/Sema/SemaDecl.cpp
test/SemaCXX/enum-scoped.cpp

index 14fbe39d092029820fc4f2fc70cd19dcf69920f2..7ff6ae13b4ef1d4337e65cb83f7e419c453c9bc4 100644 (file)
@@ -77,6 +77,7 @@ def note_decl_hiding_tag_type : Note<
   "%1 %0 is hidden by a non-type declaration of %0 here">;
 def err_attribute_not_type_attr : Error<
   "%0 attribute cannot be applied to types">;
+def err_enum_template : Error<"enumeration cannot be a template">;
 
 // Sema && Lex
 def ext_c99_longlong : Extension<
index c834e195b3a95e6fe8452c63bd278618dac40581..d0bddae1e096573859c968f882b01358780fb907 100644 (file)
@@ -556,7 +556,6 @@ def err_explicit_instantiation_with_definition : Error<
     "explicit template instantiation cannot have a definition; if this "
     "definition is meant to be an explicit specialization, add '<>' after the "
     "'template' keyword">;
-def err_enum_template : Error<"enumeration cannot be a template">;
 def err_explicit_instantiation_enum : Error<
     "enumerations cannot be explicitly instantiated">;
 def err_expected_template_parameter : Error<"expected template parameter">;
index 03bffde06ea77717edd330b5ae4d8963db44a4da..87b8a2d906c7133382739e615af09e9c6cb8d277 100644 (file)
@@ -3262,7 +3262,7 @@ void Parser::ParseEnumSpecifier(SourceLocation StartLoc, DeclSpec &DS,
     ColonProtectionRAIIObject X(*this, AllowFixedUnderlyingType);
 
     if (ParseOptionalCXXScopeSpecifier(SS, ParsedType(),
-                                       /*EnteringContext=*/false))
+                                       /*EnteringContext=*/true))
       return;
 
     if (SS.isSet() && Tok.isNot(tok::identifier)) {
index 795d97d3eaf5d52bdb154e7a7c055e177f2f2bba..5f7399a3d4c9a480c931c0b8e1fb92ecdc121b38 100644 (file)
@@ -9387,6 +9387,11 @@ Decl *Sema::ActOnTag(Scope *S, unsigned TagSpec, TagUseKind TUK,
                                                     TUK == TUK_Friend,
                                                     isExplicitSpecialization,
                                                     Invalid)) {
+      if (Kind == TTK_Enum) {
+        Diag(KWLoc, diag::err_enum_template);
+        return 0;
+      }
+
       if (TemplateParams->size() > 0) {
         // This is a declaration or definition of a class template (which may
         // be a member of another template).
index a1f911d79d395af53d26f1858b8f89b4b92ba92e..d01000d22bb48a41e181601488cc3a9a4a410302 100644 (file)
@@ -252,3 +252,17 @@ namespace pr13128 {
     enum class E { C };
   };
 }
+
+namespace PR15633 {
+  template<typename T> struct A {
+    struct B {
+      enum class E : T;
+      enum class E2 : T;
+    };
+  };
+  template<typename T> enum class A<T>::B::E { e };
+  template class A<int>;
+
+  struct B { enum class E; };
+  template<typename T> enum class B::E { e }; // expected-error {{enumeration cannot be a template}}
+}