运算处理R-1-6-13强制

禁止 sizeof 中使用赋值

sizeof 中使用赋值
test.c
1void foo(int x)
2{
3 int a;
4 int size = sizeof(a = x);
禁止 sizeof 中使用赋值 [gjb8114-r-1-6-13]
5}
sizeof 中使用非赋值
test.c
1void foo(int x)
2{
3 int a;
4 a = x;
5 int size = sizeof(a);
6}