Array size check: required in stack array, forbidden in parameter declaration #126
Labels
area:compiler
Related to code compilation or type checking
area:standard-support
Related to the C standard support
kind:feature
New feature or request
status:help-wanted
Open for contributors
See
TODO[#126]
in the code: array size should be required for stack array local declaration (likechar[100] xxx;
), and should be forbidden (or should it? check with the C standard, please) for a parameter declaration (likevoid foo(char[100] xxx);
).The text was updated successfully, but these errors were encountered: