Sign in
gnu
/
gcc
/
57ea00136418991e847e46a6946a81a1df70c9a4
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.other
/
lookup20.C
blob: ff23521590ae27a8114a48a39bb8828c4926bb4f [
file
] [
log
] [
blame
]
// { dg-do assemble }
// Bug: typename_sub2 returned the type, so we tried to look up "A" in B.
struct
A
{
struct
A1
{
};
};
struct
B
{
typedef
A Q
;
};
struct
C
:
public
B
::
Q
::
A1
{
};