-
Notifications
You must be signed in to change notification settings - Fork 571
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Confused application of subroutine prototypes #11472
Comments
From @cpansproutThe way prototypes are applied to subroutines is not consistent. I’m not sure how these cases should work: sub foo {} # has a body already That gives me a ‘Prototype mismatch’ warning and does not apply the prototype. sub MODIFY_CODE_ATTRIBUTES{} That gives me a ‘Prototype mismatch’ warning, but *does* apply the prototype. (In 5.10 it does not apply it.) So now I’ve discovered a new feature! Also, this case does apply the prototype, but that’s to be expected, as the sub is not defined: sub foo($); But in this case, the prototype is not applied: sub bar($); And here the prototype is silently ignored: BEGIN { *foo = \&bar } Flags: Site configuration information for perl 5.14.0: Configured by sprout at Wed May 11 13:45:58 PDT 2011. Summary of my perl5 (revision 5 version 14 subversion 0) configuration: Locally applied patches: @INC for perl 5.14.0: Environment for perl 5.14.0: |
Migrated from rt.perl.org#93992 (status was 'new')
Searchable as RT93992$
The text was updated successfully, but these errors were encountered: