On 2019-11-04 17:54, rikki cattermole wrote:
> There is a variant of struct/union in C which has a named instance but
> no type name.
You mean like this?
struct Foo
{
struct
{
int a;
} b;
}
That still needs to be translated to a named struct in D.
--
/Jacob Carlborg