This test has been automatized
[oota-llvm.git] / test / CFrontend / 2002-03-12-StructInitialize.c
1
2 typedef struct Connection_Type {
3    long    to;
4    char    type[10];
5    long    length;
6 } Connection;
7
8 Connection link[3]
9 = { {1, "link1", 10},
10     {2, "link2", 20},
11     {3, "link3", 30} };
12