No empty .Rs/.Re
[netbsd-mini2440.git] / gnu / dist / gcc4 / gcc / testsuite / g++.dg / template / access2.C
blob9da8ecf58bf7895f6a660deb6d947ed893a3a901
1 // { dg-do compile }
3 // PR c++/5387
4 // Enforcing access of typename type.
6 template <class T> struct A {
7   typename T::X x;                      // { dg-error "this context" }
8   int f() { return T::i; }              // { dg-error "this context" }
9 };
11 class B {
12   typedef int X;                        // { dg-error "private" }
13   static int i;                         // { dg-error "private" }
16 int main()
18   A<B> ab;                              // { dg-error "instantiated" }
19   ab.f();                               // { dg-error "instantiated" }