From: Vincent Pit Date: Mon, 6 Apr 2015 12:27:53 +0000 (-0300) Subject: Skip localized extraneous array elements tests X-Git-Tag: v0.03~1 X-Git-Url: http://git.vpit.fr/?a=commitdiff_plain;h=bfae3c21b735c4d2843e7fb4003d0a9930e10589;hp=bfae3c21b735c4d2843e7fb4003d0a9930e10589;p=perl%2Fmodules%2FVariable-Temp.git Skip localized extraneous array elements tests my @a = ...; { local [$#a+1] = 'x'; ... } does not reset the array length at scope end before perl 5.12 (actually 5.11). ---