Details
Description
In the following example, an issue should be raised on the declaration of x because its value is never used:
public int myMethod() { int x = 0; x = 1; return 1; }
In the following example, an issue should be raised on the declaration of x because its value is never used:
public int myMethod() { int x = 0; x = 1; return 1; }