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


in reply to Re: Far More than Everything You've Ever Wanted to Know about Prototypes in Perl -- by Tom Christiansen
in thread Far More than Everything You've Ever Wanted to Know about Prototypes in Perl -- by Tom Christiansen

the situation of declaring a proto with sub foobar($); and then calling it with foo(@a) and expecting that to throw an error rather than evaluating the array in scalar context.

I'd argue that the more common expectation is that this should just use the first element of @a, which is what would happen if there was no prototype.

Which is what I've seen often quoted as the biggest problem with perl prototypes; instead of enforcing subroutine arguments, it changes the way arguments are parsed.