blob: 0f066ace61776b4a78f69c1659f9e804a0f4a766 [file] [log] [blame]
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);
}