ActionsLike0
Bug #7539
closedMisleading error message "can't convert nil into string"
Description
When trying to call String#+
with nil
as an argument, you get the error "can't convert nil into String", which does not make sense (in fact seeming blatantly false) as nil.to_s
, String(nil)
etc. all return ''
without errors.
Ideally, this method should use to_s
to convert the argument, or else report an error along the lines of "can't append nil to string".
Minimal test case:
Actual:
> '' + nil
TypeError: can't convert nil into String
Expected:
> '' + nil
''
Files
Added by Marc-Andre Lafortune about 12 years ago
Added by Marc-Andre Lafortune about 12 years ago
-
re.c (reg_operand): Simplify and reuse error handling [Bug #7539]
-
test/ruby/test_regexp.rb: Test for above
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38980 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
ActionsLike0
object.c: Improve error for failed implicit conversions [Bug #7539]
error.c: Adapt rdoc
test/ruby/test_object.rb: Test for above
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38979 b2dd03c8-39d4-4d8f-98ff-823fe69b080e