http://www.perlmonks.org?node_id=1014075


in reply to Re^2: Two simple code style advice questions (tye)
in thread Two simple code style advice questions

Well, I'd say the problem is that @{ } is defined syntactically as containing a full-fledged block (and thus it imposes its own lexical scope).

@$_{@tests} = (0)x@tests for \my %ntests;

- tye