This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c++/20330] Constructor fails to find base class in specialization
- From: "igodard at pacbell dot net" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 5 Mar 2005 08:19:00 -0000
- Subject: [Bug c++/20330] Constructor fails to find base class in specialization
- References: <20050305080042.20330.igodard@pacbell.net>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Additional Comments From igodard at pacbell dot net 2005-03-05 08:18 -------
Reduced test case:
struct foo { int bar; };
template<int i>
struct bar {};
template<int i>
struct baz : public foo, public bar<i> {
baz() : foo(), bar<i>() {}
};
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20330