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 B { } *B;
int i, j, k, l, m;
};
struct A *t;
struct A a;
int
main ()
{
void *p = t
->B;
void *p = a.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