OSDN Git Service

* g++.old-deja/g++.other/eh4.C: Fix typo.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.other / access2.C
1 // Build don't link:
2 // Based on a test-case in the Standard, submitted by several people
3
4 class Outer {
5   typedef int T;
6   struct Inner {
7     T i; // ERROR - not accessible - XFAIL *-*-*
8     void f() {
9       T j; // ERROR - not accessible - XFAIL *-*-*
10     }
11   };
12 };