class A
  def a
    def b
      42
    end
  end
end

a = A.new
a.b =>#NoMethodError: undefined method `b' for #

a.a =>#nil
a.b => 42