https://issues.dlang.org/show_bug.cgi?id=19093

Basile-z <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]

--- Comment #1 from Basile-z <[email protected]> ---
This is more a bad diagnostic. The real problem being that the previous
template params cannot be reused, e.g

---
alias Foo(T) = T;

struct Test(T, Foo!(T[]) t) {}

void main()
{
    Test!(int, [3]) a;
}
---

--

Reply via email to