1// { dg-do run  }
2// Bug: t->B is resolved to the type instead of the field.
3
4struct A {
5  struct B { } *B;
6  int i, j, k, l, m;
7};
8
9struct A a;
10
11int
12main ()
13{
14  void *p = a.B;
15}
16