------- Comment #5 from pinskia at gcc dot gnu dot org 2006-04-10 16:22 ------- Here is another testcase (which was reduced from the same source and gives a similar error message but does not have inheritance in it): template<typename _Tp> struct allocator { ~allocator() throw() { } }; struct list { allocator<int> _M_impl; }; template <int> struct stack { stack(const list& __c = list()); }; stack <1> a;
-- pinskia at gcc dot gnu dot org changed: What |Removed |Added ---------------------------------------------------------------------------- GCC build triplet|x86_64-linux-gnu | GCC host triplet|x86_64-linux-gnu | GCC target triplet|x86_64-linux-gnu | http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27094