# New Ticket Created by Andrei Osipov # Please include the string: [perl #123581] # in the subject line of all future correspondence about this issue. # <URL: https://rt.perl.org/Ticket/Display.html?id=123581 >
Greetings.
$ perl6 --version
This is perl6 version 2014.12 built on MoarVM version 2014.12
$ git log | head -1
commit e487d722daf30f51b4e231d0abee4457eb14ca4d
The following occurs:
multi foo([]){
"Empty"
}
my @x = 1...*;
say foo(@x);
