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;
}