1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* vm_eval.c (vm_call0): fix for VM_METHOD_TYPE_NOTIMPLEMENTED.

[ruby-dev:41953]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28895 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2010-08-07 04:33:33 +00:00
parent 93426cd6e8
commit fd0485acf7
5 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1,10 @@
require '-test-/bug-3662/bug'
class Test_BUG_3662 < Test::Unit::TestCase
def test_funcall_notimplement
bug3662 = '[ruby-dev:41953]'
assert_raise(NotImplementedError, bug3662) {
Bug.funcall(:notimplement)
}
end
end