https://issues.dlang.org/show_bug.cgi?id=23374
Andrea Fontana <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #1 from Andrea Fontana <[email protected]> --- Same problem with unions: union t_union { int a; long b; }; struct t_struct { union t_union u; }; struct t_struct err = { .u.a = 1 }; // Error: only 1 designator currently allowed for C struct field initializer --
