Initial revision
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.brendan / nest17.C
blobf61c49ee9f52b42892c4c6027b2f59aff08da00c
1 // Build don't link: 
2 // GROUPS passed nested-classes
3 class T {
4 public:
5     typedef int I;
6     class Y {int y;};
7     typedef Y Z;
8 };
10 T::I i;
11 T::Y y;
12 T::Z z;