struct S {
int a;
int[5000] arr = void;
}
void func() {
S s;
}During the s initialization, the entire "S" area is initialized, including the member arr which we asked to be = void.
Is this a bug? Shachar
struct S {
int a;
int[5000] arr = void;
}
void func() {
S s;
}During the s initialization, the entire "S" area is initialized, including the member arr which we asked to be = void.
Is this a bug? Shachar