Daily bump.
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / lookup17.C
blob6a7510a5d80dc7630fa102149f1d8d551bd3768d
1 // Bug: t->B is resolved to the type instead of the field.
3 struct A {
4   struct B { } *B;
5   int i, j, k, l, m;
6 };
8 struct A a;
10 int
11 main ()
13   void *p = a.B;