aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.mike/misc9.C
blob: ec02d1e63c14311f8bedc31b51cb22904def64af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Build don't link: 
// Special g++ Options: -Wall -pedantic
// GROUPS passed qualifiers
class bee {
 public:
  int bee::bar;		// WARNING - there is an extra bee:: here
};

class foo {
 public:
  int bee::bar;		// ERROR - you cannot do this
    int me();
};