From 988552998662dedde9e5175f733dd31f0332abf7 Mon Sep 17 00:00:00 2001 From: charliesome Date: Fri, 24 May 2013 10:33:05 +0000 Subject: * variable.c (set_const_visibility): use rb_frame_this_func() instead of rb_frame_callee() for getting the name of the called method * test/ruby/test_module.rb: add test git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40915 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_module.rb | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'test') diff --git a/test/ruby/test_module.rb b/test/ruby/test_module.rb index 75a7b52ca8..fa7a408ede 100644 --- a/test/ruby/test_module.rb +++ b/test/ruby/test_module.rb @@ -1232,6 +1232,15 @@ class TestModule < Test::Unit::TestCase assert_equal("bar", c.class_eval("BAR")) end + def test_private_constant_with_no_args + assert_in_out_err([], <<-RUBY, [], ["-:3: warning: private_constant with no argument is just ignored"]) + $-w = true + class X + private_constant + end + RUBY + end + class PrivateClass end private_constant :PrivateClass -- cgit v1.2.3