[perl #64770] Cannot mix into Perl6Array in Rakudo

2009-04-20 Thread jn...@jnthn.net via RT
On Thu Apr 16 06:29:21 2009, masak wrote: > Rakudo 2c13d6 doesn't allow me to mix a role's method into an Array object. > > $ perl6 -e 'role DebugLog { method log_message { say $^message } }; my > @array does DebugLog; @array.log_message("OH HAI")' > Method 'log_message' not found for invocant of

[perl #64770] Cannot mix into Perl6Array in Rakudo

2009-04-17 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #64770] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=64770 > Rakudo 2c13d6 doesn't allow me to mix a role's method into an Array object. $ perl6 -e