On Wed, 2 Oct 2024 at 20:16, Salih Dincer via Digitalmars-d <digitalmars-d@puremagic.com> wrote:
On Wednesday, 2 October 2024 at 08:55:15 UTC, Manu wrote:
> Does anyone understand why this doesn't work?
>
> ```d
> void f(T)(const(T)[] x, const(T)* y) {}
> ```
> ...

Looking at the protofunction, the test() function should look
like this:

```d
void test()
{
     int[] x;
     int* y;
     f(x, y);
}
```

SDB@79

That's not the code in question.