int main(void) {
int foo = foo;
return 0;
}
Why is this possible to do? Wouldn't it be better if this was caught by the compiler?
int main(void) {
int foo = foo;
return 0;
}
Why is this possible to do? Wouldn't it be better if this was caught by the compiler?