This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug c++/20330] Constructor fails to find base class in specialization


------- 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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]