November 04, 2023
https://issues.dlang.org/show_bug.cgi?id=24227

--- Comment #1 from Marcelo Silva Nascimento Mancini <msnmancini@hotmail.com> ---
With help from Paul and Steven, this is the best I could find right now for alias checking:

```d
//Checks if the symbol got has the same alias name
//And if it points to a member
bool isAliasMember(T, string member)()
{

        return __traits(identifier, __traits(getMember, T, member)) == member
&&
                __traits(isSame, T, __traits(parent, __traits(getMember, T,
member)));
}
```

--
December 07
https://issues.dlang.org/show_bug.cgi?id=24227

--- Comment #2 from dlangBugzillaToGithub <robert.schadek@posteo.de> ---
THIS ISSUE HAS BEEN MOVED TO GITHUB

https://github.com/dlang/dmd/issues/17467

DO NOT COMMENT HERE ANYMORE, NOBODY WILL SEE IT, THIS ISSUE HAS BEEN MOVED TO GITHUB

--