/* { dg-do compile } */ /* { dg-skip-if "Array too big" { "pdp11-*-*" } { "-mint32" } } */ /* Large static storage. */ #include static volatile char chars_1[INT_MAX / 2]; static volatile char chars_2[1]; int foo (void) { chars_1[10] = 'y'; chars_2[0] = 'x'; }