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

禁止形参与全局变量同名

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