URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [debug/] [pr22514.C] - Rev 717
Go to most recent revision | Compare with Previous | Blame | View Log
/* { 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 "after struct definition" }
}
s::list<1> OutputModuleListType;
Go to most recent revision | Compare with Previous | Blame | View Log