Possible bug of "missing matching more than one candidate" in overload set

user1234 user1234 at 12.de
Fri Feb 13 14:53:09 UTC 2026


On Friday, 13 February 2026 at 14:46:14 UTC, user1234 wrote:
> Yes but both  `f` match !

forgot another code evidence:

```
alias Seq(T...) = T;

void f(T...)()
if (T.length == 0)
{
}

void f()()
{
     static assert(0);
}

void main()
{
     f!(Seq!())();
}
```



More information about the Digitalmars-d-learn mailing list