<moritz_> rakudo: say &infix:<+>.WHAT
<p6eval> rakudo 0e0671: OUTPUT«Null PMC access in find_method() [...]
<sbp> credit: Björn Höhrmann
* masak submits another rakudobug
$ ./perl6
> say &infix:<+>.WHAT
Multi()
Assigning to moritz++ for spectest coverage, if needed.
Pm
# RT #66928
{
lives_ok { &infix:<+>.WHAT }, 'Can .WHAT built-in infix op';
isa_ok &infix:<+>.WHAT, Multi, '.WHAT of built-in infix op is Multi';
}
Kyle
Thanks! Closing ticket!
Pm
ok &infix:<+>.WHAT ~~ Multi, '.WHAT of built-in infix op is Multi';
As implementations are not obligated to have a Multi isa-type but may
have a Multi role mixed in or some such...
Jonathan
Kyle.