# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #61102] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=61102 >
Rakudo r33577 can do private method calls. $ perl6 -e 'class A { my method x {}; method y { self!x } }; A.new.y' And it can do calls to methods whose name is given in a string. $ perl6 -e 'class A { method x {}; method y { self."x" } }; A.new.y' But it cannot do both at the same time. $ perl6 -e 'class A { my method x {}; method y { self!"x" } }; A.new.y' Null PMC access in get_string() [...]