struct S {
    int x;
}

void main() {
    S i = 5;
    printf("%d", i.x); // prints 0
}

