May 30, 2014
https://issues.dlang.org/show_bug.cgi?id=6474

monkeyworks12@hotmail.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |monkeyworks12@hotmail.com

--- Comment #4 from monkeyworks12@hotmail.com ---
I have just run into this. Has it been fixed in the newest DMD release?

--
June 13, 2020
https://issues.dlang.org/show_bug.cgi?id=6474

Basile-z <b2.temp@gmx.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |b2.temp@gmx.com
         Resolution|---                         |WORKSFORME

--- Comment #5 from Basile-z <b2.temp@gmx.com> ---
supported since 2.068.2.

---
import std.meta : AliasSeq;

struct X(T)
{
    alias T TT;
}

alias G = AliasSeq!(int,int, X!string);

alias TT = G[2].TT;

static assert (is(TT == string))
---

--