Skip Menu |

This queue is for tickets about the Perl-Critic-PetPeeves-JTRAMMELL CPAN distribution.

Report information
The Basics
Id: 130566
Status: new
Priority: 0/
Queue: Perl-Critic-PetPeeves-JTRAMMELL

People
Owner: Nobody in particular
Requestors: EDAVIS [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Unimportant
Broken in: (no value)
Fixed in: (no value)



Just to note that what looks like an unnecessary initialization may be necessary with goto. MYLABEL: my @a = (); do_stuff; goto MYLABEL; Without the explicit initialization @a would have its existing contents. Obviously this says nothing about the desirability of goto in general...