Actions
Feature #7730
closedTop level variables aren't checked for assigned but unused behavior
Description
In the following code, variable a in the method gets a warning, but variable b in top level code doesn't get any warning
def warning_method
a = 2
end
b = 2
warning_method
$ ruby -w no_toplevel_warnings.rb
no_toplevel_warnings.rb:2: warning: assigned but unused variable - a
It is possible to detect that b is unused if the script is required from another script.
I'd like Ruby to be able to detect that b is an assigned but unused variable.
Files
Actions
Like0
Like0Like0Like0