forked from OSchip/llvm-project
Closed out a few radars that were addressed by designated initializers
llvm-svn: 63398
This commit is contained in:
parent
1958677ccf
commit
d5576dee1c
|
@ -80,3 +80,19 @@ struct s1 s2 = {
|
|||
|
||||
// PR3382
|
||||
char t[] = ("Hello");
|
||||
|
||||
// <rdar://problem/6094855>
|
||||
typedef struct { } empty;
|
||||
|
||||
typedef struct {
|
||||
empty e;
|
||||
int i2;
|
||||
} st;
|
||||
|
||||
st st1 = { .i2 = 1 };
|
||||
|
||||
// <rdar://problem/6096826>
|
||||
struct {
|
||||
int a;
|
||||
int z[2];
|
||||
} y = { .z = {} };
|
||||
|
|
Loading…
Reference in New Issue