# New Ticket Created by  Ilya Belikin 
# Please include the string:  [perl #60572]
# in the subject line of all future correspondence about this issue. 
# <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=60572 >


Hi!
example:

class Foo {
    has @.a;
}
my @b = 1,2,3;

my $f = Foo.new(a => @b);
$f.a.perl.say; # []

$f = Foo.new( :a(1,2,3) );
$f.a.perl.say; # []

$f = Foo.new( :a([1,2,3]) );
$f.a.perl.say; # []

Thank you!
Ilya

Reply via email to