* Makefile.tpl: Change the directory naming scheme in another
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / access2.C
blob51722aecdb148a2d3ed97b5dea05fa7d720aa3c8
1 // { dg-do assemble  }
2 // Based on a testcase in the Standard, submitted by several people
4 class Outer {
5   typedef int T;
6   struct Inner {
7     T i; // { dg-error "" "" { xfail *-*-* } } not accessible - 
8     void f() {
9       T j; // { dg-error "" "" { xfail *-*-* } } not accessible - 
10     }
11   };