I'm running ruby 1.9.2p180 (2011-02-18 revision 30909) [x86_64-linux].
#!/usr/bin/env ruby
def ouch()
raise ArgumentError, "woof"
fred = 3
return( nil )
ensure
if ( defined?( fred ) ) then
printf( "fred is defined (%s)\n", fred.inspect() )
else
printf( "fred is not defined\n" )
end
end # ouch()
ouch()
When run, the output from the above ruby script is quite unexpected.
$ ./ouch.rb
fred is defined (nil)
./ouch.rb:4:in `ouch': woof (ArgumentError)
from ./ouch.rb:22:in `<main>'
So the raise/exception is occurring, fred isn't getting set to 3, but it is getting defined and set to nil, thereby defeating the test for defined?(). This is very confusing. Is this a bug? Obviously the test for defined needs to be followed by testing for not nil.
If this isn't a bug, can someone explain why not?