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


in reply to Re: Re: Never
in thread Never-to-use Perl features?

sub foo ($$) { } my @bar = (1, 2); foo (1, 2); # Fine. foo (@bar); # Compile time error.

Abigail