Actions
Feature #8691
closedAdd warning for variable that is re-assigned but not re-used
Status:
Closed
Assignee:
-
Target version:
-
Description
The following code
def reassigned_unused
a = 42
b = a.to_s
a = 56
b
end
Does not currently generate an "assigned but unused variable" warning about the second assignment to "a".
Is it feasible to create a warning for such a scenario?
Actions
Like0
Like0Like0Like0Like0