# New Ticket Created by  宋文泰 
# Please include the string:  [perl #126172]
# in the subject line of all future correspondence about this issue. 
# <URL: https://rt.perl.org/Ticket/Display.html?id=126172 >


```perl6 code

my @a = 1,2,3;
my @b;
@b.push: @a,;

```

@b is [1,2,3], not [ [1,2,3] ], is this a bug? 
in S07: 
http://design.perl6.org/S07.html
   @a.push: @b,;           # pushes 1 value (whatever is in @b)
This is perl6 version 2015.09-115-g4653d98 built on MoarVM version 
2015.09-36-g51dcbe4

Reply via email to