https://issues.dlang.org/show_bug.cgi?id=23374

Andrea Fontana <trik...@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |trik...@gmail.com

--- Comment #1 from Andrea Fontana <trik...@gmail.com> ---
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

--

Reply via email to