blob: 6ee4be350a5ac9d7ff9fd40ee3188cdd09468a13 [file] [log] [blame]
// { dg-do compile }
// Origin: Jakub Jelinek <jakub@redhat.com>
// PR c++/5402
struct A
{
struct B {};
};
struct C
{
typedef int B;
};
struct D : A
{
struct E : C {};
struct B {};
};