Sign in
gnu
/
gcc
/
57ea00136418991e847e46a6946a81a1df70c9a4
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.other
/
lookup12.C
blob: d283e2c291448c3633b90a6eee3d9700b7ef7da4 [
file
] [
log
] [
blame
]
// { dg-do assemble }
// Origin: Mark Mitchell <mark@codesourcery.com>
struct
B
{
struct
X
{};
};
struct
D
:
public
B
{
void
X
();
struct
X x
;
void
f
();
};
void
D
::
f
()
{
struct
X y
;
}