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