On 2015-08-29 04:04:32, SREZIC wrote:
Show quoted text> The t/DigitGroups.t test fails since 5.23.2:
>
> Can't redeclare "my" in "my" at
> /usr/local/src/CPAN/build/2015082909/Math-PlanePath-120-
> jlvdQE/blib/lib/Math/PlanePath/DigitGroups.pm line 193, near ", "
> Compilation failed in require at t/DigitGroups.t line 32.
> t/DigitGroups.t .................
> Dubious, test returned 255 (wstat 65280, 0xff00)
> Failed 64/64 subtests
This is probably the following change (from 5.23.2's perldelta.pod):
Incompatible Changes
Nested declarations are now disallowed
A "my", "our", or "state" declaration is no longer allowed inside of
another "my", "our", or "state" declaration.
For example, these are now fatal:
my ($x, my($y));
our (my $x);
[perl #125587] <
https://rt.perl.org/Ticket/Display.html?id=125587>
[perl #121058] <
https://rt.perl.org/Ticket/Display.html?id=121058>