Is this a ctfe bugs ? ref scope const(ubyte)[32]

d007 d007 at gmail.com
Wed Sep 6 12:04:40 UTC 2023


```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


More information about the Digitalmars-d-learn mailing list