> On 25 Sep 2015, at 06:43, 宋文泰 (via RT) wrote:
>
> # New Ticket Created by 宋文泰
> # Please include the string: [perl #126172]
> # in the subject line of all future correspondence about this issue.
> # https://rt.perl.org/Ticket/Display.html?id=126172 >
>
>
> ```perl6 code
>
> my @a = 1,2,
# New Ticket Created by 宋文泰
# Please include the string: [perl #126172]
# in the subject line of all future correspondence about this issue.
# 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