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


> my @a[4]
[(Any) (Any) (Any) (Any)]
> my Int @a[4] = 0..3
[0 1 2 3]
> my Int @a[4]
Method 'gist' not found for invocant of class 'NQPMu'

I expected:
[(Int) (Int) (Int) (Int)]

By defining native typed arrays do have a gist:

> my int @a[4]
[0 0 0 0]

Reply via email to