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

禁止变量与函数同名

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