7 static __code
const char Str_global
[] = "Hello1";
13 static __code
const char str_local
[] = "Hello2";
15 static char str1
[sizeof (Str_global
)];
16 static char str2
[sizeof (str_local
)]; // causes error 20: Undefined identifier 'str_local'
18 s1
= sizeof (Str_global
);
19 s2
= sizeof (str_local
); // no error and proper result when line causing error (above) is removed