summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/nested8.C
blob: 6c283fab4a3deb2c667e556ccdd77e3f1e33c068 (plain)
1
2
3
4
5
6
7
8
// { dg-do assemble  }

struct A { };
struct B: public A {
  struct C {
friend struct B;		// { dg-bogus "" } base clause w/o members
  };
};