blob: 6a7510a5d80dc7630fa102149f1d8d551bd3768d [file] [log] [blame]
// 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;
}