In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/03a1fa1ec8c5ab3929f9d04fe91f45260062eb0e?hp=a6128716d2cc20147851e0a37768376647bd3242>
- Log ----------------------------------------------------------------- commit 03a1fa1ec8c5ab3929f9d04fe91f45260062eb0e Author: Father Chrysostomos <spr...@cpan.org> Date: Sun Sep 4 22:11:00 2016 -0700 parser.t: Suppress warning ----------------------------------------------------------------------- Summary of changes: t/comp/parser.t | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/t/comp/parser.t b/t/comp/parser.t index 2da145c..b752500 100644 --- a/t/comp/parser.t +++ b/t/comp/parser.t @@ -544,7 +544,10 @@ eval "grep+grep"; eval 'BEGIN {$^H=-1} \eval=time'; # Used to fail an assertion [perl #129073] -eval '${p{};sub p}()'; +{ + local $SIG{__WARN__} = sub{}; + eval '${p{};sub p}()'; +} # RT #124207 syntax error during stringify can leave stringify op # with multiple children and assertion failures -- Perl5 Master Repository