What does `C.new.aliased` return, and what does it show about how alias_method works?class C def original; "orig"; end alias_method :aliased, :original def original; "redefined"; end end C.new.aliased