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

禁止变量与枚举元素同名

变量与枚举元素同名
test.c
1enum Type { Int, Float };
2
3void foo(void)
4{
5 int Int;
禁止变量与枚举元素同名 [gjb8114-r-1-13-5]
6}