[perl #62852] Method calls to junctions do not autothread in Rakudo

2009-01-28 Thread jn...@jnthn.net via RT
On Tue Jan 27 14:13:52 2009, masak wrote: > rakudo: class A { method b { say (1..10).pick } }; > any(A.new, A.new, A.new).b > rakudo 36065: OUTPUT«Could not locate a method 'b' to invoke > on class 'Junction'. [...] > uhm. > rakudobug? > masak: if you please ;-) > * masak submits > > The expe

[perl #62852] Method calls to junctions do not autothread in Rakudo

2009-01-28 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #62852] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=62852 > rakudo: class A { method b { say (1..10).pick } }; any(A.new, A.new, A.new).b rakudo 3