blob: 9ff50474223acf7337ef3963f9888cd95da65eba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* { dg-do compile } */
/* Large static storage. */
#include <limits.h>
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';
}
|