mirror of
https://github.com/ruby/ruby.git
synced 2025-09-23 20:44:00 +02:00
* vm.c (rb_vm_check_redefinition_opt_method): should check the real
class instead of the origin iclass. [ruby-core:72188] [Bug #11826] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53173 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
ea4b4d3a76
commit
0c659e26cb
3 changed files with 25 additions and 0 deletions
|
@ -1695,6 +1695,22 @@ class TestModule < Test::Unit::TestCase
|
|||
assert_equal(0, 1 / 2)
|
||||
end
|
||||
|
||||
def test_redefine_optmethod_after_prepend
|
||||
bug11826 = '[ruby-core:72188] [Bug #11826]'
|
||||
assert_separately [], %{
|
||||
module M
|
||||
end
|
||||
class Fixnum
|
||||
prepend M
|
||||
def /(other)
|
||||
quo(other)
|
||||
end
|
||||
end
|
||||
assert_equal(1 / 2r, 1 / 2, "#{bug11826}")
|
||||
}, ignore_stderr: true
|
||||
assert_equal(0, 1 / 2)
|
||||
end
|
||||
|
||||
def test_prepend_visibility
|
||||
bug8005 = '[ruby-core:53106] [Bug #8005]'
|
||||
c = Class.new do
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue