1 2 3 4 5 6 7 8 9 10 11
/* PR c++/82872 */ /* { dg-do compile } */ #include <stddef.h> struct S { int i, a[1]; }; size_t foo (void) { return offsetof (struct S, a[__PTRDIFF_MAX__]); }