blob: 389b701eeb60e388dca25f75225e4a6ef521725c [file] [log] [blame]
struct S {
int m;
};
static S A[4] = (S[4])0;
void f() {
S v = {int(1)};
A[int(0)] = v;
}