slimcc icon indicating copy to clipboard operation
slimcc copied to clipboard

Failure to catch variable redefinition

Open brdjns opened this issue 8 months ago • 1 comments

int main() {
    int x = 4;
    int x = 5;
}

brdjns avatar May 07 '25 11:05 brdjns

Assign to const isn't checked either

const int j;
void fn(void) {
  j = 23;
}

fuhsnn avatar May 20 '25 23:05 fuhsnn