-
Notifications
You must be signed in to change notification settings - Fork 558
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
\&{'foo'} not caught by strict refs #900
Comments
From andrew@pimlott.ne.mediaone.net\&{'foo'} is allowed under strict refs, while \${'foo'} and &{'foo'} are #!/usr/bin/perl -w use strict; # Make sure $foo and &foo are both defined $bar = \&{'foo'}; (Something tells me that I've heard of this exception somewhere, but I can't Andrew Perl Info
|
From @TimToadyIf I recall, part of the reasoning was that making it catch that would break goto &$AUTOLOAD; But it oughta be documented. Larry |
Migrated from rt.perl.org#1834 (status was 'resolved')
Searchable as RT1834$
The text was updated successfully, but these errors were encountered: