This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c++/25006] failure "using" a name contained in a class
- From: "reichelt at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 30 Nov 2005 21:13:56 -0000
- Subject: [Bug c++/25006] failure "using" a name contained in a class
- References: <bug-25006-11755@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Comment #4 from reichelt at gcc dot gnu dot org 2005-11-30 21:13 -------
> Or the other way round: Because the using-declaration for "FooBar" is not
> inside a class, it cannot be a member-declaration according to [7.3.3]/6.
> Therefore "::Foo::Bar" cannot be a class-name - it has to be a
> namespace-name. And that's what GCC's error message says.
Sorry, the "according to" is at the wrong place.
This should read:
Or the other way round: Because the using-declaration for "FooBar" is not
inside a class, it cannot be a member-declaration. Therefore "::Foo::Bar"
cannot be a class-name according to [7.3.3]/6. Which means it has to be
a namespace-name. And that's what GCC's error message says.
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25006