URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [g++.dg/] [tc1/] [dr161.C] - Rev 318
Go to most recent revision | Compare with Previous | Blame | View Log
// { dg-do compile }
// Origin: Giovanni Bajo <giovannibajo at gcc dot gnu dot org>
// DR161: Access to protected nested type
namespace N1 {
struct A
{
protected:
typedef int type;
};
struct B : public A
{
void test(void)
{
A::type t;
}
friend void ftest(void)
{
A::type t;
}
};
}
namespace N2 {
template <class T>
struct A
{
protected:
typedef int type;
};
template <class T>
struct B : public A<T>
{
void test(B b)
{
typename A<T>::type t;
}
friend void ftest(B b)
{
typename A<T>::type t;
}
};
template struct B<void>;
}
Go to most recent revision | Compare with Previous | Blame | View Log