aboutsummaryrefslogtreecommitdiffstats
path: root/vm_method.c
diff options
context:
space:
mode:
Diffstat (limited to 'vm_method.c')
-rw-r--r--vm_method.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/vm_method.c b/vm_method.c
index 1acd7226a2..e3d6b41a31 100644
--- a/vm_method.c
+++ b/vm_method.c
@@ -1303,6 +1303,9 @@ rb_alias(VALUE klass, ID name, ID def)
again:
orig_me = search_method(klass, def, &defined_class);
+ if (orig_me && orig_me->def->type == VM_METHOD_TYPE_REFINED) {
+ orig_me = rb_resolve_refined_method(Qnil, orig_me, &defined_class);
+ }
if (UNDEFINED_METHOD_ENTRY_P(orig_me) ||
UNDEFINED_REFINED_METHOD_P(orig_me->def)) {