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

禁止变量与 typedef 类型同名

变量与 typedef 类型同名
test.c
1typedef int Int;
2
3void foo(void)
4{
5 int Int;
禁止变量与 typedef 类型同名 [gjb8114-r-1-13-6]
6}