Comment #0 by qs.il.paperinik — 2024-09-19T12:32:25Z
```d
struct S
{
int[] x;
ref const int[] f() => x;
}
```
In the above snipped, `const` applies to the implicit `this` parameter of `f`. While prefix type qualifiers are widespread, qualifiers between `ref` and the basic type part of the return type are probably unlikely in both human written and generated code.
Maybe we could interpret this the same as `ref const(int[])` instead.
Comment #1 by robert.schadek — 2024-12-13T19:37:24Z