blob: 4552d39fea2b1bf06709bb7095a8142b159ecf64 [file] [log] [blame]
#include <cstddef>
struct choke_me
{
int size;
char storage[1];
};
struct offset_is_broken
{
static const int offset = offsetof(choke_me, storage);
};