Open
Description
If there is code like:
$hello = 'world';
$hello = 'abc';
echo $hello;
the first $hello declaration is not reported as "unused" even though it should, since it isn't used & this line is useless.
This case often happens when refactoring (of course in a more complicated way, with more code between the lines)