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!())();
}
```

Reply via email to