PR c++/86728 - C variadic generic lambda.
[official-gcc.git] / gcc / testsuite / g++.dg / ext / offsetof2.C
blob647cf8d0b77c5dd38c90c38464db387986f987c7
1 // PR c++/85662
2 // { dg-do compile { target c++11 } }
4 struct S { unsigned long x[31]; };
5 struct T { bool b; S f; };
6 static_assert (__builtin_offsetof (T, f.x[31 - 1]) == __builtin_offsetof (T, f.x[30]), "");