```d
extern(C) int test(ref scope const(ubyte)[32] b);
```

This will automatic become this in ctfe relection

```d
extern(C) int test(ref scope const(ubyte[32]) b);
```

LDC2 1.34.0 DMD v2.104.2

Reply via email to