fuhsnn / slimcc

C11 compiler with GNU / C23 extensions for x86-64 Linux, able to build Python and PostgreSQL
MIT License
24 stars 3 forks source link

Constant evaluation omits left-hand comma expression #44

Closed fuhsnn closed 9 months ago

fuhsnn commented 9 months ago
#include <stdio.h>
int main(void) {
    int i = 0;
    int arr[(i++, 4)];
    printf("%d\n", i); // expect 1, got 0
}