slimcc
slimcc copied to clipboard
Failure to catch variable redefinition
int main() {
int x = 4;
int x = 5;
}
Assign to const isn't checked either
const int j;
void fn(void) {
j = 23;
}