Commit 2884e22c by Mark Mitchell Committed by Mark Mitchell

re PR c++/28056 (enum accepted as scope)

	PR c++/28056
	* decl.c (grokdeclarator): Disallow declarations with qualified
	names in local scopes.
	PR c++/28056
	* g++.dg/parse/local1.C: New test.

From-SVN: r116410
parent 7d3bec9d
2006-08-25 Mark Mitchell <mark@codesourcery.com>
PR c++/28056
* decl.c (grokdeclarator): Disallow declarations with qualified
names in local scopes.
2006-08-25 Nathan Sidwell <nathan@codesourcery.com>
PR c++/27787
......
......@@ -6948,7 +6948,27 @@ grokdeclarator (const cp_declarator *declarator,
break;
if (qualifying_scope)
{
if (TYPE_P (qualifying_scope))
if (at_function_scope_p ())
{
/* [dcl.meaning]
A declarator-id shall not be qualified except
for ...
None of the cases are permitted in block
scope. */
if (qualifying_scope == global_namespace)
error ("invalid use of qualified-name %<::%D%>",
decl);
else if (TYPE_P (qualifying_scope))
error ("invalid use of qualified-name %<%T::%D%>",
qualifying_scope, decl);
else
error ("invalid use of qualified-name %<%D::%D%>",
qualifying_scope, decl);
return error_mark_node;
}
else if (TYPE_P (qualifying_scope))
{
ctype = qualifying_scope;
if (innermost_code != cdk_function
......
2006-08-25 Mark Mitchell <mark@codesourcery.com>
PR c++/28056
* g++.dg/parse/local1.C: New test.
2006-08-25 Nathan Sidwell <nathan@codesourcery.com>
PR c++/27787
......@@ -6,6 +6,6 @@ struct A
int i;
void foo()
{
int A::i = i; // { dg-error "extra qualification|not a static member" }
int A::i = i; // { dg-error "qualified" }
}
};
// PR c++/28056
void f1();
namespace N {
void f2();
}
class C {
static void f3();
};
void foo() {
void ::f1(); // { dg-error "qualified" }
void N::f2(); // { dg-error "qualified" }
void C::f3(); // { dg-error "qualified" }
void ::f4(); // { dg-error "qualified" }
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment