aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.brendan/scope5.C
blob: 753236948a35807c3bc8611f7ebf5f2684835ee2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Build don't link: 
// GROUPS passed scoping
class Integer {
public:
    int i;
};

class Type {
    enum Class { ENUM, INTEGER };

    class Description {
    public:
        
    };

    class Integer: public Description {
    public:
        ::Integer low;
        ::Integer high;
    };
};