1 2 3 4 5 6 7 8 9 10 11 12 13 14
struct s { char a[0x32100000]; int x:30, y:30; }; int main () { struct s* p; p = (struct s*) 0; if (p->x == p->y) exit (1); }