libstdc++: Add missing constexpr to __atomic_impl::__clear_padding
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / lookup17.C
blob80a3b1a8707b83ab081763d5ffd9a6633806d219
1 // { dg-do run  }
2 // Bug: t->B is resolved to the type instead of the field.
4 struct A {
5   struct B { } *B;
6   int i, j, k, l, m;
7 };
9 struct A a;
11 int
12 main ()
14   void *p = a.B;