This error was found by Vabenil on Discord.
Error: template instance `AliasSeq!(foo, bar)` `AliasSeq!(foo, bar)` is nested in both `A` and `B`
Test code:
```d
import std.meta;
import std.stdio;
struct A {
int foo;
}
struct B {
int bar;
}
int main()
{
writeln(AliasSeq!(A.foo, B.bar).stringof);
return 0;
}
```
Comment #1 by robert.schadek — 2024-12-13T19:25:45Z