struct Foo
{
int[42] buffer = void;
int bar;
}I know I can do this: Foo foo = void But then all fields are uninitialized.
struct Foo
{
int[42] buffer = void;
int bar;
}I know I can do this: Foo foo = void But then all fields are uninitialized.