分支控制R-1-4-3强制

禁止空 switch 语句

空 switch 语句
test.c
1void foo(void)
2{
3 int x = 0;
4 switch (x)
5 {
6 }
禁止空 switch 语句 [gjb8114-r-1-4-3]
7}