Sign in
gnu
/
gcc
/
57ea00136418991e847e46a6946a81a1df70c9a4
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.other
/
lookup17.C
blob: 80a3b1a8707b83ab081763d5ffd9a6633806d219 [
file
] [
log
] [
blame
]
// { dg-do run }
// Bug: t->B is resolved to the type instead of the field.
struct
A
{
struct
B
{
}
*
B
;
int
i
,
j
,
k
,
l
,
m
;
};
struct
A a
;
int
main
()
{
void
*
p
=
a
.
B
;
}