summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.brendan/nest11.C
blob: 0c6d475de353a6916f501acf49b97fdb117092c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// { dg-do assemble  }
// GROUPS passed nested-classes
class A {
  int x;

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

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