blob: 0a90327232feff4e809151e8777ab5eacac75547 [file] [log] [blame]
/* { dg-do compile } */
namespace s
{
template <int> struct _List_base
{
int _M_impl;
};
template<int i> struct list : _List_base<i>
{
using _List_base<i>::_M_impl;
} /* { dg-error "error: expected ';' after struct" } */
}
s::list<1> OutputModuleListType;