static init c struct with array filed

test test123 at gmail.com
Wed Mar 16 07:27:06 UTC 2022


```c
struct Test {
     int32_t a;
}
struct Test2 {
     int32_t a;
     Test arr[];
}
```

I need static const init Test2, then pass it to c library 
late(third library, can not change the type def).


I am not sure how to do it in D.


More information about the Digitalmars-d-learn mailing list