# New Ticket Created by Hojung Yoon # Please include the string: [perl #66882] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=66882 >
at rev: 10f2235028194deddf3db350b5a4a5208484ac09 relative ticket: [perl #65638] it's url: http://rt.perl.org/rt3/Public/Bug/Display.html?id=65638 ## "multi sub" works > multi sub infix:<op> ($l,$r) { $l ~ $r }; say( 1 op 2 ) 12 ## overiding works (but doesn't warn that it is overiding builtin op) > sub infix:<+> ($l,$r) { $l ~ $r }; say( 1 + 2 ) 12 ## meanwhile, it occurs Null PMC access > multi sub infix:<+> ($l,$r) { $l ~ $r }; say( 1 + 2 ) Null PMC access in find_method() in Main (<unknown>:1)