Actions
Bug #3214
closedMissing function name in "Wrong number of arguments" exception backtrace
Description
=begin
As illustrated below 1.8 reported the name of function called with wrong number of arguments, while 1.9 doesn't
ruby -v -e 'def f(a) end; f'
ruby 1.8.7 (2010-01-10 patchlevel 249) [i686-linux]
-e:1:in `f': wrong number of arguments (0 for 1) (ArgumentError)
from -e:1
ruby -v -e 'def f(a) end; f'
ruby 1.9.2dev (2010-04-28 trunk 27532) [i686-linux]
-e:1:in `': wrong number of arguments (0 for 1) (ArgumentError)
=end
Actions
Like0
Like0