921e5a0eb4
From-SVN: r14840
15 lines
142 B
C
15 lines
142 B
C
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);
|
|
}
|