# New Ticket Created by "Carl Mäsak"
# Please include the string: [perl #64594]
# in the subject line of all future correspondence about this issue.
# <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=64594 >
<moritz_> rakudo: class A { has Int @.a is rw }; my $x=A.new; $x.a =
(2, 3, 4); say $x.a.perl
<p6eval> rakudo e05aff: OUTPUT«[2, 3, 4]»
<moritz_> rakudo: class A { has Int @.a is rw }; my $x=A.new; $x.a =
(2, 3, 4); $x.a.push: 'foo'; say $x.a.perl
<p6eval> rakudo e05aff: OUTPUT«[2, 3, 4, "foo"]»
<moritz_> masak: care to submit? :-)
* masak submits
<moritz_> rakudo: class A { has Int @.a is rw }; my $x=A.new; $x.a =
<foo bar>; say $x.a.perl
<p6eval> rakudo e05aff: OUTPUT«["foo", "bar"]»