[Bug c++/34920] New: Members in nameless union
ned at gcc dot gnu dot org ReportedBy: extronus at gmail dot com http://gcc.gnu.org/bugzilla/show_bug.cgi?id=34920
[Bug c++/34920] Members in nameless union
--- Comment #2 from extronus at gmail dot com 2008-01-22 06:04 --- more simplified - template struct base { float a; }; template class derv : public base { void der_funk() { a = 0; } }; while this one works -- template struct base { float a