aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/nested8.C
blob: ff2d659a3fc7e19875b1b06da44b8ce47e933efc (plain)
1
2
3
4
5
6
7
8
// Build don't link:

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