// Test that we can properly lex identifiers that start with keywords

int main(void) {
    int return_val = 3;
    int void2 = 2;
    return return_val + void2;
}