变量使用R-1-13-1强制

禁止局部变量与全局变量同名

局部变量与全局变量同名
test.c
1int the_global_var = 0;
2
3void foo(void)
4{
5 int the_global_var = 0;
禁止局部变量与全局变量同名 [gjb8114-r-1-13-1]
6}