aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.brendan/enum4.C
blob: 826ccd3b9f0025f47f9cd6ef03d624f498025e8d (plain)
1
2
3
4
5
6
7
8
9
10
// Build don't link: 
// GROUPS passed enums
class X {
public:
  enum { a };
};

enum { b = 1 };
enum ok {  y = b };
enum notok { z = X::a };