aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.brendan/nest11.C
blob: 4a57b38385840e835db00fadf4d43256bd029227 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Build don't link: 
// GROUPS passed nested-classes
class A {
  int x;

  struct B {
    int x;
  };
  struct C {
    int bug (A::B &y);
  };
};

int
A::C::bug (A::B &y)
{
  return y.x;
}