URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [template/] [using21.C] - Rev 693
Compare with Previous | Blame | View Log
// PR c++/52126
// { dg-do compile }
template<typename T>
struct A
{
int foo;
struct B : A<T>
{
using A::foo;
};
struct C : A
{
using A::foo;
};
struct D : A<T>
{
using A<T>::foo;
};
struct E : A
{
using A<T>::foo;
};
};