fuhsnn / slimcc

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

Assignment expression as VLA size #10

Closed fuhsnn closed 11 months ago

fuhsnn commented 11 months ago
int fn(int a, int b) {
    int arr[a = b];
    return sizeof arr;
}