1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

Checkin old testcase that is newly fixed.

llvm-svn: 2161
This commit is contained in:
Chris Lattner 2002-04-08 19:32:51 +00:00
parent 3efb75a95d
commit 91c72eacec

View File

@ -0,0 +1,12 @@
typedef struct Connection_Type {
long to;
char type[10];
long length;
} Connection;
Connection link[3]
= { {1, "link1", 10},
{2, "link2", 20},
{3, "link3", 30} };