[perl #64594] You can push strings to attribute arrays typed with Int in Rakudo

2009-05-20 Thread jn...@jnthn.net via RT
On Thu Apr 23 09:44:12 2009, moritz wrote: > On Thu Apr 09 01:12:40 2009, masak wrote: > > rakudo: class A { has Int @.a is rw }; my $x=A.new; $x.a = > > (2, 3, 4); say $x.a.perl > > rakudo e05aff: OUTPUT«[2, 3, 4]␤» > > rakudo: class A { has Int @.a is rw }; my $x=A.new; $x.a = > > (2, 3, 4); $

[perl #64594] You can push strings to attribute arrays typed with Int in Rakudo

2009-04-09 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #64594] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=64594 > rakudo: class A { has Int @.a is rw }; my $x=A.new; $x.a = (2, 3, 4); say $x.a.perl ra