thradams / cake

Cake a C23 front end and transpiler written in C
http://thradams.com/cake/index.html
GNU General Public License v3.0
533 stars 21 forks source link

Using incomplete struct without error #190

Closed thradams closed 2 months ago

thradams commented 3 months ago
struct X{    
    int b[sizeof(struct X)];
};
int main(){}

Should be an error.

thradams commented 2 months ago

fixed