1/* { dg-do compile } */
2
3/* Large static storage.  */
4
5#include <limits.h>
6
7static volatile char chars_1[INT_MAX / 2];
8static volatile char chars_2[1];
9
10int
11foo (void)
12{
13  chars_1[10] = 'y';
14  chars_2[0] = 'x';
15}
16