fuhsnn / slimcc

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

typedef for VLA #12

Closed fuhsnn closed 11 months ago

fuhsnn commented 11 months ago

VLA can be typedef'd

int x = 3;
typedef char T[x];
T arr; // VLA