diff options
author | Dylan Thacker-Smith <[email protected]> | 2019-07-02 15:06:54 +0100 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2019-09-20 02:20:59 +0900 |
commit | 7fbd2f7cc247ee66e877ab3c88f0274834c6b6c7 () | |
tree | 1d03cfc0cba9aabb542306f7f1f685dfb636f0c1 /test/ruby/test_refinement.rb | |
parent | 17a13663998a98ff75fcc838d1cea95c879fbb88 (diff) |
Allow calling a private method with `self.`
This makes it consistent with calling private attribute assignment methods, which currently is allowed (e.g. `self.value =`). Calling a private method in this way can be useful when trying to assign the return value to a local variable with the same name. [Feature #11297] [Feature #16123]
Notes: Merged: https://.com/ruby/ruby/pull/2474
-rw-r--r-- | test/ruby/test_refinement.rb | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -538,7 +538,7 @@ class TestRefinement < Test::Unit::TestCase def test_main_using_is_private assert_raise(NoMethodError) do - eval("self.using Module.new", Sandbox::BINDING) end end |