blob: 1b0e35c9b9192e7296470ed57fe4b573f6fa4c13 [file] [log] [blame]
// Build don't link:
struct A {
struct B { };
};
struct C : public A {
struct D
: public B // gets bogus error - can't find B
{ };
};