Namespace lookup: g++ 4.0.0 -> g++ 4.0.1 regression?
Gabriel Dos Reis
gdr@integrable-solutions.net
Sat Jul 9 10:07:00 GMT 2005
Jhair Tocancipa Triana <jhair_tocancipa@gmx.net> writes:
| Consider the following snippet:
|
| --8<---------------cut here---------------start------------->8---
| namespace foo
| {
| class A
| {
| friend class B;
|
| void bar (B);
| };
|
| class B {};
| }
| --8<---------------cut here---------------end--------------->8---
|
| This compiles fine with:
|
| g++ (GCC) 3.3.3
| g++ (GCC) 4.0.0
|
| But fails with g++ (GCC) 4.0.1:
|
| $ g++ -c namespace.cc
| namespace.cc:7: error: 'B' has not been declared
|
| Why? If this a bug, I am not sure it is the same bug as:
|
| http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19403
Yes. See second example from comment #6.
-- Gaby, in the friend mess again
More information about the Gcc
mailing list