/* You can't use a string literal as a variable name */

int main(void) {
    int "x" = 0;
    return 0;
}