ref: 3eb88c0d7a390c249fd74f973b6e6f14549b6a39
dir: /tests/cc/execute/0166-desig.c/
struct S {
int a, b, c;
char d[3];
int e;
} s = {
.a = 1,
.b = 2,
.d = {[0] = 3, [2] = 5},
.d = {[0] = 4, [1] = 6}
};
char m[] = {};
int
main(void)
{
return sizeof(m) == s.d[2];
}