diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2002-01-03 00:09:13 +0100 |
---|---|---|
committer | Abhijit Menon-Sen <ams@wiw.org> | 2002-01-02 21:42:50 +0000 |
commit | 2c69233919b95e269d717fac5ec61d28c192b12c (patch) | |
tree | 672c2da83425f85113eb59636319b77421d47e52 | |
parent | 8bb1827720a1484fd1840d09c6b4e71fd5726b43 (diff) | |
download | perl-2c69233919b95e269d717fac5ec61d28c192b12c.tar.gz |
errors caused by the "my Dog $spot" syntax
Message-Id: <20020102230913.A17373@rafael>
p4raw-id: //depot/perl@14027
-rw-r--r-- | pod/perldiag.pod | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/pod/perldiag.pod b/pod/perldiag.pod index 11d298ef04..90ed552ddd 100644 --- a/pod/perldiag.pod +++ b/pod/perldiag.pod @@ -543,7 +543,7 @@ quotas or other plumbing problems. =item Can't declare class for non-scalar %s in "%s" -(S) Currently, only scalar variables can declared with a specific class +(F) Currently, only scalar variables can declared with a specific class qualifier in a "my" or "our" declaration. The semantics may be extended for other types of variables in future. @@ -2202,6 +2202,11 @@ immediately after the switch, without intervening spaces. (F) The indicated command line switch needs a mandatory argument, but you haven't specified one. +=item No such class %s + +(F) You provided a class qualifier in a "my" or "our" declaration, but +this class doesn't exist at this point in your program. + =item No such pipe open (P) An error peculiar to VMS. The internal routine my_pclose() tried to |