Actions
Bug #1982
closedKernel.load(..., true) --> scope problem
Description
=begin
In a file loaded with "Kernel.load(..., true)", the way constants are looked up has changed since 1.8. The attached script "helloworld.rb" works in Ruby 1.8, but fails in Ruby 1.9. It should be invoked like below to provoke the error:
$ ruby1.9 -e 'load "helloworld.rb", true'
The error I get is:
helloworld.rb:8:in say': uninitialized constant #<Module:0x2c9764>::HelloWorld::Hello (NameError) from helloworld.rb:12:in
<top (required)>'
from -e:1:in load' from -e:1:in
'
The behaviour of 1.9 seems like a bug to me. It makes it almost impossible to write code in a file loaded this way (with the "true" parameter to "Kernel.load").
( see also my previous mail about this in [ruby-core:22033] )
=end
Files
Actions
Like0
Like0Like0Like0