URL
https://opencores.org/ocsvn/scarts/scarts/trunk
Subversion Repositories scarts
[/] [scarts/] [trunk/] [toolchain/] [scarts-gcc/] [gcc-4.1.1/] [gcc/] [testsuite/] [g++.dg/] [template/] [access2.C] - Rev 26
Go to most recent revision | Compare with Previous | Blame | View Log
// { dg-do compile }
// PR c++/5387
// Enforcing access of typename type.
template <class T> struct A {
typename T::X x; // { dg-error "this context" }
int f() { return T::i; } // { dg-error "this context" }
};
class B {
typedef int X; // { dg-error "private" }
static int i; // { dg-error "private" }
};
int main()
{
A<B> ab; // { dg-error "instantiated" }
ab.f(); // { dg-error "instantiated" }
}
Go to most recent revision | Compare with Previous | Blame | View Log