Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
lookup
/
name-clash3.C
blob: eb52a7c10c7ee3b01c9dca8250aed930de49aa3f [
file
] [
log
] [
blame
]
// { dg-do compile }
// Origin: Volker Reichelt <reichelt@igpm.rwth-aachen.de>
// PR c++/12102
struct
A
{
struct
C
{}
C
;
};
struct
B
:
A
{
struct
C
{}
C
;
};