vindexbit
Results
2
comments of
vindexbit
The problem can be demonstrated with this simplified program: ```d void main() { import std.stdio : writeln; real[1] arr = 0; writeln(arr); } ``` The problem is the output of...
```d void fn(int* x, real[1] arr) { auto y = *x; // SEGFAULT, x == null } void main() { real[1] arr = 0; int x; fn(&x, arr); } ```...