This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c++/33516] [4.0/4.1/4.2/4.3 Regression] Rejects typedef qualified name-lookup
- From: "rguenth at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 22 Sep 2007 08:00:47 -0000
- Subject: [Bug c++/33516] [4.0/4.1/4.2/4.3 Regression] Rejects typedef qualified name-lookup
- References: <bug-33516-10053@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Comment #4 from rguenth at gcc dot gnu dot org 2007-09-22 08:00 -------
That is the following:
struct foo_bar;
typedef foo_bar bar;
struct foo_bar {
typedef int baz;
foo_bar::baz ii;
};
is fine.
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=33516