fuhsnn / slimcc

C11 compiler with GNU extensions for x86-64 Linux, working towards C23
MIT License
34 stars 4 forks source link

sizeof compound-literal with variably-modified type #26

Closed fuhsnn closed 11 months ago

fuhsnn commented 11 months ago

This crashes the compiler:

int fn(int i){
    return sizeof(*(char(*)[i+7]){0});
}