A subclass overrides `method_missing` and calls `super` for unhandled names. What does `super` invoke in that path?
class Base
def method_missing(name, *)
"base_mm:#{name}"
end
end
class Child < Base
def method_missing(name, *args)
name == :known ? "child:known" : super
end
end
p Child.new.unknown