aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.brendan/nest17.C
blob: f61c49ee9f52b42892c4c6027b2f59aff08da00c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Build don't link: 
// GROUPS passed nested-classes
class T {
public:
    typedef int I;
    class Y {int y;};
    typedef Y Z;
};

T::I i;
T::Y y;
T::Z z;