```
int valueA = 0;
int valueB = 3;
valueA == valueB;
```
**Issue:** Enforce Script will give no indication that there may be a problem with the above code. The problem is there is a compare operator when there should be an assignment operator.
**Suggested Fix:** In C++, the GCC compiler will output the warning `warning: statement has no effect [-Wunused-value]`, Enforce Script should do the same.