blob: 5174ad4906d2490d62f88be207e2a4791d69522d [file] [log] [blame]
// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
typedef struct Connection_Type {
long to;
char type[10];
long length;
} Connection;
Connection link[3]
= { {1, "link1", 10},
{2, "link2", 20},
{3, "link3", 30} };