Actions
Bug #21662
closedVariables other than those in the conditional score are replaced.
Bug #21662:
Variables other than those in the conditional score are replaced.
Description
class Bar
attr_accessor :name
end
class Foo
attr_accessor :bar
def initialize(bar=nil)
@bar = bar || Bar.new
end
def bug!
if !bar.is_a?(Bar)
bar = ''
elsif bar.name == 'bar'
end
end
end
Foo.new.bug!
Actions