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

Block-like statement-expression #68

Closed fuhsnn closed 4 months ago

fuhsnn commented 4 months ago

This should be valid.

int fn(void) {
    ({
        do {} while(0);
    });
}