Hi, 
 
the following code doesn't compile: 
 
struct A {}; 
 
namespace Boo 
{ 
struct B 
{ 
    friend struct A; 
 
    B(const A&) {}; 
}; 
} 
 
int main() 
{ 
    A a; 
    Boo::B b(a); 
    return 0; 
} 
 
It compiles with g++ < 4.0.

-- 
           Summary: name lookup is broken
           Product: gcc
           Version: 4.0.0
            Status: UNCONFIRMED
          Severity: critical
          Priority: P2
         Component: c++
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: Woebbeking at web dot de
                CC: gcc-bugs at gcc dot gnu dot org


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19403

Reply via email to