Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
lookup
/
name-clash1.C
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
{};
};