Skip to main content
Journey Uncommon Logo
JourneyUncommon
hardRubymethod_missing dispatch internalsSingle-choice MCQ

What happens when `method_missing` calls `super` for a name it does not handle?

class Q def method_missing(name, *) return "handled" if name == :ok super end end q = Q.new q.nope