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