#include  <stdio.h>

int main(void) {
    typedef struct {
        int west;
        int test[3];
    } S;
    
    S s = {0, {1, 2, 3}};
    s.test[-1] = 4;
    
    printf("%d", s.west);
}