Fixed by reverting 1a03efe4e3b61a07b7df5 in 363a3a899f2cb342d1ca5 .
> On 18 Sep 2016, at 05:19, Aleks-Daniel Jakimenko-Aleksejev (via RT)
> wrote:
>
> # New Ticket Created by Aleks-Daniel Jakimenko-Aleksejev
> # Please include the string: [perl #129296]
> # in the subject line of all future
# New Ticket Created by Sam S.
# Please include the string: [perl #129299]
# in the subject line of all future correspondence about this issue.
# https://rt.perl.org/Ticket/Display.html?id=129299 >
When a quantified capture group matched zero times but the overall regex
matches, then the Lis
I’m looking into this. This appears to be an artefact of .gist on the list,
caused by the say. Which also happens for .perl on the list.
say $/.list.Str; # a c
Suspecting the gistseen/perlseen machinery now. Investigating...
> On 18 Sep 2016, at 19:30, Sam S. (via RT)
> wrote:
>
Ah, found it:
The List iterator assumes that a List cannot have “holes” in it. Apparently it
can :-(
Going to sleep on how to fix this.
> On 18 Sep 2016, at 19:30, Sam S. (via RT)
> wrote:
>
> # New Ticket Created by Sam S.
> # Please include the string: [perl #129299]
> # in the subjec
Fixed (for now at least) with 9b6f2eb5434e71f07bc649 . Tests still needed.
> On 18 Sep 2016, at 19:30, Sam S. (via RT)
> wrote:
>
> # New Ticket Created by Sam S.
> # Please include the string: [perl #129299]
> # in the subject line of all future correspondence about this issue.
> # https:
# New Ticket Created by Aleks-Daniel Jakimenko-Aleksejev
# Please include the string: [perl #129304]
# in the subject line of all future correspondence about this issue.
# https://rt.perl.org/Ticket/Display.html?id=129304 >
Differences between 2015.12 and HEAD:
committable6: 2015.12,HEAD .f
# New Ticket Created by Benjamin Goldberg
# Please include the string: [perl #129305]
# in the subject line of all future correspondence about this issue.
# https://rt.perl.org/Ticket/Display.html?id=129305 >
Here is a snippet from #perl6 on freenode:
m: ('a', 42, 'b', 22/7, 'c', 23).first(
# New Ticket Created by Aleks-Daniel Jakimenko-Aleksejev
# Please include the string: [perl #129306]
# in the subject line of all future correspondence about this issue.
# https://rt.perl.org/Ticket/Display.html?id=129306 >
Code:
sub foo(@array ($first, @rest)) { say @rest };
foo <1 2 3>
Res