aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.brendan/misc14.C
blob: 024566fc2c870338279771045c084edbff8d57a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Build don't link: 
// GROUPS passed miscellaneous-bugs
class X {
public:
    enum e {
	New,// ERROR -  conflicts with other.*
    }; // ERROR - comma

    static int New(int);// ERROR -  declaration.*
};

int main() {}