int main() {
    int x = 0;
    switch(x) {
        case 1: x = 1; break;
        default: return 0;
    }
}