Comment #0 by dlang-bugzilla — 2014-02-19T19:58:17Z
Currently, this code doesn't compile, although I think it should:
//////////////////////////////
struct S1(alias a)
{
struct S2(alias b)
{
void foo()
{
a = b;
}
}
}
struct Test
{
int i, j;
S1!i.S2!j s;
}
//////////////////////////////
Comment #1 by robert.schadek — 2024-12-13T18:17:13Z