Skip to content

Instantly share code, notes, and snippets.

@igaiga
Created October 23, 2019 01:43
Show Gist options
  • Save igaiga/c0cc51a6694f9a10e8fa61a39d794cd7 to your computer and use it in GitHub Desktop.
Save igaiga/c0cc51a6694f9a10e8fa61a39d794cd7 to your computer and use it in GitHub Desktop.
# 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