1*f4a2713aSLionel Sambuc // RUN: %clang_cc1 -emit-llvm %s -o /dev/null 2*f4a2713aSLionel Sambuc 3*f4a2713aSLionel Sambuc 4*f4a2713aSLionel Sambuc typedef struct Connection_Type { 5*f4a2713aSLionel Sambuc long to; 6*f4a2713aSLionel Sambuc char type[10]; 7*f4a2713aSLionel Sambuc long length; 8*f4a2713aSLionel Sambuc } Connection; 9*f4a2713aSLionel Sambuc 10*f4a2713aSLionel Sambuc Connection link[3] 11*f4a2713aSLionel Sambuc = { {1, "link1", 10}, 12*f4a2713aSLionel Sambuc {2, "link2", 20}, 13*f4a2713aSLionel Sambuc {3, "link3", 30} }; 14*f4a2713aSLionel Sambuc 15