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

missing error on abc[4] = "abcd" #161

Closed thradams closed 1 month ago

thradams commented 6 months ago
int main() {
char abc[4] = "abcd"; // missing error
char def[4] = "abd"; // OK
}
thradams commented 6 months ago

also - no space for null

`char a[3] = "abc"; 
thradams commented 1 month ago

fixed