------- Additional Comments From pinskia at gcc dot gnu dot org  2005-07-21 
17:44 -------
Here is a shorter testcase:
namespace s
{
  template <int> struct _List_base
  {
    int _M_impl;
  };
  template<int i> struct list : _List_base<i>
  {
    using _List_base<i>::_M_impl;
  }
}
s::list<1> OutputModuleListType;

-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=22514

Reply via email to