Bug#284973: g++-4.0: name lookup is broken

2005-01-13 Thread André Wöbbeking
sorry, wrong bug :( -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Bug#284973: g++-4.0: name lookup is broken

2005-01-12 Thread André Wöbbeking
I forwarded this to upstream: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19403 -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Bug#284973: g++-4.0: name lookup is broken

2004-12-09 Thread Andre Woebbeking
Package: g++-4.0 Version: 4.0-0pre2 Severity: important Tags: experimental 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. Cheer