Thread overview
[Issue 13580] alias missing in overloaded homonym template
Apr 29, 2019
Basile-z
Mar 21, 2020
Basile-z
Jan 17, 2021
Bolpat
Dec 17, 2022
Iain Buclaw
Oct 16
Basile-z
April 29, 2019
https://issues.dlang.org/show_bug.cgi?id=13580

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |b2.temp@gmx.com

--- Comment #1 from Basile-z <b2.temp@gmx.com> ---
If someone comes with a fix then rather use this test case since the original is not supposed to compile even with the bug fixed. This one does:

---
template memoize(alias fun)
{
    alias Args = string;
    void memoize(Args args) {}
}

template memoize(alias fun)
{
    alias Args = int;
    void memoize(Args args) {}
}

void main()
{
    memoize!(a => a)("");
}
---

--
March 21, 2020
https://issues.dlang.org/show_bug.cgi?id=13580

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|b2.temp@gmx.com             |

--
January 17, 2021
https://issues.dlang.org/show_bug.cgi?id=13580

Bolpat <qs.il.paperinik@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |qs.il.paperinik@gmail.com

--
December 17, 2022
https://issues.dlang.org/show_bug.cgi?id=13580

Iain Buclaw <ibuclaw@gdcproject.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P2                          |P3

--
October 16
https://issues.dlang.org/show_bug.cgi?id=13580

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

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

--- Comment #2 from Basile-z <b2.temp@gmx.com> ---


*** This issue has been marked as a duplicate of issue 11662 ***

--