* vm_method.c (rb_add_method_def): no redefinition warning on

undef.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25206 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2009-10-03 12:19:19 +00:00
parent 74926fefb7
commit 9603cd2f62
4 changed files with 23 additions and 1 deletions

View file

@ -845,5 +845,13 @@ class TestModule < Test::Unit::TestCase
end
end
assert_equal("", stderr, '[ruby-dev:39397]')
stderr = EnvUtil.verbose_warning do
Module.new do
def foo; end
undef foo
end
end
assert_equal("", stderr)
end
end