class Example private def example_test puts \'Hello\' end end e = Example.new e.example_test
This of course will not work, because we specifi
IIRC, private methods allow only implicit receiver (which is always self, of course).