[perl #65640] Defining an operator as a multi and then calling it causes a Null PMC access in Rakudo
Now fixed in 3a274d9. We probably need a spectest in order to close the ticket. Thanks! Pm
[perl #68664] [BUG] Null PMC access in find_method() for infix:<+>
Now fixed in f351f60: $ cat x class A { has $.a is rw; method add(A $b) { $.a ~ $b.a } } multi sub infix:<+>(A $a, A $b) { $a.add($b) }; my A $a .= new(a=>'foo'); my A $b .= new(a=>'bar'); say $a.a ~ $b.a; say $a + $b; $ ./perl6 x foobar foobar $ Assigning to moritz++ so that we can