Commit ea5d313a by Jason Merrill

fix

From-SVN: r31268
parent 373a9956
// Bug: t->B is resolved to the type instead of the field.
struct A { struct A {
struct B { } *B; struct B { } *B;
int i, j, k, l, m; int i, j, k, l, m;
}; };
struct A *t; struct A a;
int int
main () main ()
{ {
void *p = t void *p = a.B;
->B;
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment