OSDN Git Service

Formatting fixes.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / compile / init-1.c
1 typedef struct
2 {
3   char *key;
4   char *value;
5 } T1;
6
7 typedef struct
8 {
9   long type;
10   char *value;
11 } T3;
12
13 T1 a[] =
14 {
15   {
16     "",
17     ((char *)&((T3) {1, (char *) 1}))
18   }
19 };