summaryrefslogtreecommitdiff
path: root/ld/testsuite/ld-ctf/array-char-conflicting-2.c
blob: 1cc46f0a31b95e1ce11077b5a0f75490b4f343a4 (plain)
1
2
3
4
5
6
7
8
9
typedef char *array[9];

static array digits_names = {"one", "two", "three", "four",
			     "five", "six", "seven", "eight", "nine"};

void *bar (void)
{
  return digits_names;
}