Hello!
While compiling the source code of one of my programs, I noticed that the compiler did not warn me about some declared (but not referenced) 'char' variables. It's a very minor issue, but I don't know if it's a compiler bug or not. Anyway, to reproduce the issue, just declare a couple of never referenced 'char' variables like the following:
int n = 8;
char str1[8]; <== warning #2114: Local 'str1' is not referenced.
char str2[n]; <== no warning
During the compilation, the compiler will not warn about the 'str2' variable.
Marco