Created
October 23, 2019 01:43
-
-
Save igaiga/c0cc51a6694f9a10e8fa61a39d794cd7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ruby 2.7.0preview2 (2019-10-22 master 02aadf1032) [x86_64-darwin18] | |
class Foo | |
private def foo | |
"foo!!" | |
end | |
def bar | |
self.foo | |
end | |
end | |
p Foo.new.bar #=> "foo!!" | |
#=> 2.6まではprivate method `foo' called error |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment