Closed out a few radars that were addressed by designated initializers

llvm-svn: 63398
diff --git a/clang/test/Sema/init.c b/clang/test/Sema/init.c
index 9f08678..41ca624 100644
--- a/clang/test/Sema/init.c
+++ b/clang/test/Sema/init.c
@@ -80,3 +80,19 @@
 
 // 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 = {} };