blob: 1316fbbd0e4a9569ba96049a5ff9a8926d98998f [file] [log] [blame]
Eric Christopher3883e662011-07-26 22:17:02 +00001// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
2
3
4typedef struct Connection_Type {
5 long to;
6 char type[10];
7 long length;
8} Connection;
9
10Connection link[3]
11= { {1, "link1", 10},
12 {2, "link2", 20},
13 {3, "link3", 30} };
14