rt_gccstream/gcc/testsuite/g++.dg/parse/offsetof2.C

13 lines
165 B
C

#include <cstddef>
struct choke_me
{
int size;
char storage[1];
};
struct offset_is_broken
{
static const int offset = offsetof(choke_me, storage);
};