This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perldiag: Tweak ‘Can't open perl script’
[perl5.git] / pod / perldiag.pod
CommitLineData
a0d0e21e
LW
1=head1 NAME
2
3perldiag - various Perl diagnostics
4
5=head1 DESCRIPTION
6
7These messages are classified as follows (listed in increasing order of
8desperation):
9
10 (W) A warning (optional).
d1d15184 11 (D) A deprecation (enabled by default).
00eb3f2b 12 (S) A severe warning (enabled by default).
a0d0e21e
LW
13 (F) A fatal error (trappable).
14 (P) An internal error you should never see (trappable).
54310121 15 (X) A very fatal error (nontrappable).
cb1a09d0 16 (A) An alien error message (not generated by Perl).
a0d0e21e 17
75b44862 18The majority of messages from the first three classifications above
64977eb6 19(W, D & S) can be controlled using the C<warnings> pragma.
e476b1b5
GS
20
21If a message can be controlled by the C<warnings> pragma, its warning
22category is included with the classification letter in the description
23below.
24
25Optional warnings are enabled by using the C<warnings> pragma or the B<-w>
fa816bf3 26and B<-W> switches. Warnings may be captured by setting C<$SIG{__WARN__}>
e476b1b5
GS
27to a reference to a routine that will be called on each warning instead
28of printing it. See L<perlvar>.
29
b7eceb5b 30Severe warnings are always enabled, unless they are explicitly disabled
e476b1b5 31with the C<warnings> pragma or the B<-X> switch.
4438c4b7 32
748a9306 33Trappable errors may be trapped using the eval operator. See
4438c4b7
JH
34L<perlfunc/eval>. In almost all cases, warnings may be selectively
35disabled or promoted to fatal errors using the C<warnings> pragma.
36See L<warnings>.
a0d0e21e 37
6df41af2
GS
38The messages are in alphabetical order, without regard to upper or
39lower-case. Some of these messages are generic. Spots that vary are
40denoted with a %s or other printf-style escape. These escapes are
41ignored by the alphabetical order, as are all characters other than
42letters. To look up your message, just ignore anything that is not a
43letter.
a0d0e21e
LW
44
45=over 4
46
6df41af2 47=item accept() on closed socket %s
33633739 48
be771a83
GS
49(W closed) You tried to do an accept on a closed socket. Did you forget
50to check the return value of your socket() call? See
51L<perlfunc/accept>.
33633739 52
de42a5a9 53=item Allocation too large: %x
a0d0e21e 54
6df41af2 55(X) You can't allocate more than 64K on an MS-DOS machine.
a0d0e21e 56
1109a392 57=item '%c' allowed only after types %s
ef54e1a4 58
1109a392
MHM
59(F) The modifiers '!', '<' and '>' are allowed in pack() or unpack() only
60after certain types. See L<perlfunc/pack>.
ef54e1a4 61
6df41af2 62=item Ambiguous call resolved as CORE::%s(), qualify as such or use &
43192e07 63
75b44862 64(W ambiguous) A subroutine you have declared has the same name as a Perl
be771a83
GS
65keyword, and you have used the name without qualification for calling
66one or the other. Perl decided to call the builtin because the
67subroutine is not imported.
43192e07 68
6df41af2
GS
69To force interpretation as a subroutine call, either put an ampersand
70before the subroutine name, or qualify the name with its package.
71Alternatively, you can import the subroutine (or pretend that it's
72imported with the C<use subs> pragma).
43192e07 73
6df41af2 74To silently interpret it as the Perl operator, use the C<CORE::> prefix
496a33f5 75on the operator (e.g. C<CORE::log($x)>) or declare the subroutine
be771a83
GS
76to be an object method (see L<perlsub/"Subroutine Attributes"> or
77L<attributes>).
43192e07 78
c2e66d9e
GS
79=item Ambiguous range in transliteration operator
80
81(F) You wrote something like C<tr/a-z-0//> which doesn't mean anything at
82all. To include a C<-> character in a transliteration, put it either
83first or last. (In the past, C<tr/a-z-0//> was synonymous with
84C<tr/a-y//>, which was probably not what you would have expected.)
85
6df41af2 86=item Ambiguous use of %s resolved as %s
43192e07 87
6df41af2
GS
88(W ambiguous)(S) You said something that may not be interpreted the way
89you thought. Normally it's pretty easy to disambiguate it by supplying
90a missing quote, operator, parenthesis pair or declaration.
a0d0e21e 91
d8225693
JM
92=item Ambiguous use of %c resolved as operator %c
93
94(W ambiguous) C<%>, C<&>, and C<*> are both infix operators (modulus,
3303f755
FC
95bitwise and, and multiplication) I<and> initial special characters
96(denoting hashes, subroutines and typeglobs), and you said something
97like C<*foo * foo> that might be interpreted as either of them. We
98assumed you meant the infix operator, but please try to make it more
99clear -- in the example given, you might write C<*foo * foo()> if you
100really meant to multiply a glob by the result of calling a function.
d8225693 101
1ef43bca
JM
102=item Ambiguous use of %c{%s} resolved to %c%s
103
104(W ambiguous) You wrote something like C<@{foo}>, which might be
105asking for the variable C<@foo>, or it might be calling a function
106named foo, and dereferencing it as an array reference. If you wanted
1cecf2c0 107the variable, you can just write C<@foo>. If you wanted to call the
1ef43bca
JM
108function, write C<@{foo()}> ... or you could just not have a variable
109and a function with the same name, and save yourself a lot of trouble.
110
e850844c
FC
111=item Ambiguous use of %c{%s[...]} resolved to %c%s[...]
112
113=item Ambiguous use of %c{%s{...}} resolved to %c%s{...}
4da60377 114
fa816bf3
FC
115(W ambiguous) You wrote something like C<${foo[2]}> (where foo represents
116the name of a Perl keyword), which might be looking for element number
1172 of the array named C<@foo>, in which case please write C<$foo[2]>, or you
118might have meant to pass an anonymous arrayref to the function named
119foo, and then do a scalar deref on the value it returns. If you meant
120that, write C<${foo([2])}>.
ccaaf480
FC
121
122In regular expressions, the C<${foo[2]}> syntax is sometimes necessary
123to disambiguate between array subscripts and character classes.
fa816bf3
FC
124C</$length[2345]/>, for instance, will be interpreted as C<$length> followed
125by the character class C<[2345]>. If an array subscript is what you
126want, you can avoid the warning by changing C</${length[2345]}/> to the
127unsightly C</${\$length[2345]}/>, by renaming your array to something
128that does not coincide with a built-in keyword, or by simply turning
129off warnings with C<no warnings 'ambiguous';>.
4da60377 130
bdac9d71 131=item Ambiguous use of -%s resolved as -&%s()
397d0f13
JM
132
133(W ambiguous) You wrote something like C<-foo>, which might be the
a7f6e211
FC
134string C<"-foo">, or a call to the function C<foo>, negated. If you meant
135the string, just write C<"-foo">. If you meant the function call,
397d0f13
JM
136write C<-foo()>.
137
79ef86ee 138=item Ambiguous use of 's//le...' resolved as 's// le...'; Rewrite as 's//el' if you meant 'use locale rules and evaluate rhs as an expression'. In Perl 5.18, it will be resolved the other way
94b03d7d 139
fa816bf3 140(W deprecated, ambiguous) You wrote a pattern match with substitution
79ef86ee 141immediately followed by "le". In Perl 5.16 and earlier, this is
94b03d7d
KW
142resolved as meaning to take the result of the substitution, and see if
143it is stringwise less-than-or-equal-to what follows in the expression.
144Having the "le" immediately following a pattern is deprecated behavior,
79ef86ee 145so in Perl 5.18, this expression will be resolved as meaning to do the
94b03d7d 146pattern match using the rules of the current locale, and evaluate the
79ef86ee
KW
147rhs as an expression when doing the substitution. In 5.14, and 5.16 if
148you want the latter interpretation, you can simply write "el" instead.
149But note that the C</l> modifier should not be used explicitly anyway;
150you should use C<use locale> instead. See L<perllocale>.
94b03d7d 151
6df41af2 152=item '|' and '<' may not both be specified on command line
a0d0e21e 153
be771a83
GS
154(F) An error peculiar to VMS. Perl does its own command line
155redirection, and found that STDIN was a pipe, and that you also tried to
156redirect STDIN using '<'. Only one STDIN stream to a customer, please.
c9f97d15 157
6df41af2 158=item '|' and '>' may not both be specified on command line
1028017a 159
be771a83
GS
160(F) An error peculiar to VMS. Perl does its own command line
161redirection, and thinks you tried to redirect stdout both to a file and
162into a pipe to another command. You need to choose one or the other,
163though nothing's stopping you from piping into a program or Perl script
164which 'splits' output into two streams, such as
1028017a 165
6df41af2
GS
166 open(OUT,">$ARGV[0]") or die "Can't write to $ARGV[0]: $!";
167 while (<STDIN>) {
168 print;
169 print OUT;
170 }
171 close OUT;
c9f97d15 172
6df41af2 173=item Applying %s to %s will act on scalar(%s)
eb6e2d6f 174
496a33f5
SC
175(W misc) The pattern match (C<//>), substitution (C<s///>), and
176transliteration (C<tr///>) operators work on scalar values. If you apply
be771a83 177one of them to an array or a hash, it will convert the array or hash to
ac036724 178a scalar value (the length of an array, or the population info of a
179hash) and then work on that scalar value. This is probably not what
be771a83
GS
180you meant to do. See L<perlfunc/grep> and L<perlfunc/map> for
181alternatives.
eb6e2d6f 182
6df41af2 183=item Arg too short for msgsnd
76cd736e 184
6df41af2 185(F) msgsnd() requires a string at least as long as sizeof(long).
76cd736e 186
b0fdf69e 187=item %s argument is not a HASH or ARRAY element or a subroutine
a0d0e21e 188
cc1c2e42
FC
189(F) The argument to exists() must be a hash or array element or a
190subroutine with an ampersand, such as:
a0d0e21e
LW
191
192 $foo{$bar}
cb4f522a 193 $ref->{"susie"}[12]
cc1c2e42 194 &do_something
a0d0e21e 195
8ea97a1e 196=item %s argument is not a HASH or ARRAY element or slice
5f05dabc 197
06e52bfa
FC
198(F) The argument to delete() must be either a hash or array element,
199such as:
5f05dabc 200
201 $foo{$bar}
cb4f522a 202 $ref->{"susie"}[12]
5f05dabc 203
8ea97a1e 204or a hash or array slice, such as:
5f05dabc 205
6df41af2
GS
206 @foo[$bar, $baz, $xyzzy]
207 @{$ref->[12]}{"susie", "queue"}
5315574d 208
6df41af2 209=item %s argument is not a subroutine name
a0d0e21e 210
6df41af2 211(F) The argument to exists() for C<exists &sub> must be a subroutine
be771a83
GS
212name, and not a subroutine call. C<exists &sub()> will generate this
213error.
a0d0e21e 214
f86702cc 215=item Argument "%s" isn't numeric%s
a0d0e21e 216
be771a83
GS
217(W numeric) The indicated string was fed as an argument to an operator
218that expected a numeric value instead. If you're fortunate the message
219will identify which operator was so unfortunate.
a0d0e21e 220
b4581f09
JH
221=item Argument list not closed for PerlIO layer "%s"
222
a534ac11
FC
223(W layer) When pushing a layer with arguments onto the Perl I/O
224system you forgot the ) that closes the argument list. (Layers
225take care of transforming data between external and internal
226representations.) Perl stopped parsing the layer list at this
227point and did not attempt to push this layer. If your program
228didn't explicitly request the failing operation, it may be the
229result of the value of the environment variable PERLIO.
b4581f09 230
a0d0e21e
LW
231=item Array @%s missing the @ in argument %d of %s()
232
75b44862
GS
233(D deprecated) Really old Perl let you omit the @ on array names in some
234spots. This is now heavily deprecated.
a0d0e21e
LW
235
236=item assertion botched: %s
237
21b5e840 238(X) The malloc package that comes with Perl had an internal failure.
a0d0e21e
LW
239
240=item Assertion failed: file "%s"
241
21b5e840 242(X) A general assertion failed. The file in question must be examined.
a0d0e21e 243
82122228
FC
244=item Assigning non-zero to $[ is no longer possible
245
7d345e3d
FC
246(F) When the "array_base" feature is disabled (e.g., under C<use v5.16;>)
247the special variable C<$[>, which is deprecated, is now a fixed zero value.
82122228 248
a0d0e21e
LW
249=item Assignment to both a list and a scalar
250
251(F) If you assign to a conditional operator, the 2nd and 3rd arguments
252must either both be scalars or both be lists. Otherwise Perl won't
253know which context to supply to the right side.
254
96ebfdd7
RK
255=item A thread exited while %d threads were running
256
b92a77e8
FC
257(W threads)(S) When using threaded Perl, a thread (not necessarily
258the main thread) exited while there were still other threads running.
111a855e
FC
259Usually it's a good idea first to collect the return values of the
260created threads by joining them, and only then to exit from the main
96ebfdd7
RK
261thread. See L<threads>.
262
2393f1b9 263=item Attempt to access disallowed key '%s' in a restricted hash
1b1f1335 264
49293501 265(F) The failing code has attempted to get or set a key which is not in
2393f1b9 266the current set of allowed keys of a restricted hash.
49293501 267
81689caa
HS
268=item Attempt to bless into a reference
269
270(F) The CLASSNAME argument to the bless() operator is expected to be
57dedab9 271the name of the package to bless the resulting object into. You've
81689caa
HS
272supplied instead a reference to something: perhaps you wrote
273
274 bless $self, $proto;
275
276when you intended
277
278 bless $self, ref($proto) || $proto;
279
280If you actually want to bless into the stringified version
281of the reference supplied, you need to stringify it yourself, for
282example by:
283
284 bless $self, "$proto";
285
a730510a
FC
286=item Attempt to clear deleted array
287
288(S debugging) An array was assigned to when it was being freed.
289Freed values are not supposed to be visible to Perl code. This
290can also happen if XS code calls C<av_clear> from a custom magic
291callback on the array.
292
96ebfdd7
RK
293=item Attempt to delete disallowed key '%s' from a restricted hash
294
295(F) The failing code attempted to delete from a restricted hash a key
296which is not in its key set.
297
298=item Attempt to delete readonly key '%s' from a restricted hash
299
300(F) The failing code attempted to delete a key whose value has been
301declared readonly from a restricted hash.
302
de42a5a9 303=item Attempt to free non-arena SV: 0x%x
a0d0e21e 304
f84fe999 305(S internal) All SV objects are supposed to be allocated from arenas
be771a83
GS
306that will be garbage collected on exit. An SV was discovered to be
307outside any of those arenas.
a0d0e21e 308
12578ffb 309=item Attempt to free nonexistent shared string '%s'%s
bbce6d69 310
f84fe999 311(S internal) Perl maintains a reference-counted internal table of
be771a83
GS
312strings to optimize the storage and access of hash keys and other
313strings. This indicates someone tried to decrement the reference count
314of a string that can no longer be found in the table.
bbce6d69 315
7d5b40b4 316=item Attempt to free temp prematurely: SV 0x%x
a0d0e21e 317
f84fe999 318(S debugging) Mortalized values are supposed to be freed by the
be771a83
GS
319free_tmps() routine. This indicates that something else is freeing the
320SV before the free_tmps() routine gets a chance, which means that the
321free_tmps() routine will be freeing an unreferenced scalar when it does
322try to free it.
a0d0e21e
LW
323
324=item Attempt to free unreferenced glob pointers
325
f84fe999 326(S internal) The reference counts got screwed up on symbol aliases.
a0d0e21e 327
7d5b40b4 328=item Attempt to free unreferenced scalar: SV 0x%x
a0d0e21e 329
be771a83
GS
330(W internal) Perl went to decrement the reference count of a scalar to
331see if it would go to 0, and discovered that it had already gone to 0
332earlier, and should have been freed, and in fact, probably was freed.
333This could indicate that SvREFCNT_dec() was called too many times, or
334that SvREFCNT_inc() was called too few times, or that the SV was
335mortalized when it shouldn't have been, or that memory has been
336corrupted.
a0d0e21e 337
dcdda58d
GS
338=item Attempt to join self
339
340(F) You tried to join a thread from within itself, which is an
be771a83
GS
341impossible task. You may be joining the wrong thread, or you may need
342to move the join() to some other thread.
dcdda58d 343
84902520
TB
344=item Attempt to pack pointer to temporary value
345
be771a83
GS
346(W pack) You tried to pass a temporary value (like the result of a
347function, or a computed expression) to the "p" pack() template. This
348means the result contains a pointer to a location that could become
349invalid anytime, even before the end of the current statement. Use
350literals or global values as arguments to the "p" pack() template to
351avoid this warning.
84902520 352
087b5369
RD
353=item Attempt to reload %s aborted.
354
355(F) You tried to load a file with C<use> or C<require> that failed to
356compile once already. Perl will not try to compile this file again
357unless you delete its entry from %INC. See L<perlfunc/require> and
358L<perlvar/%INC>.
359
1b20cd17
NC
360=item Attempt to set length of freed array
361
362(W) You tried to set the length of an array which has been freed. You
363can do this by storing a reference to the scalar representing the last index
fa816bf3 364of an array and later assigning through that reference. For example
1b20cd17
NC
365
366 $r = do {my @a; \$#a};
367 $$r = 503
368
b7a902f4 369=item Attempt to use reference as lvalue in substr
370
be771a83
GS
371(W substr) You supplied a reference as the first argument to substr()
372used as an lvalue, which is pretty strange. Perhaps you forgot to
373dereference it first. See L<perlfunc/substr>.
b7a902f4 374
c32124fe
NC
375=item Attribute "locked" is deprecated
376
57dedab9
FC
377(D deprecated) You have used the attributes pragma to modify the
378"locked" attribute on a code reference. The :locked attribute is
379obsolete, has had no effect since 5005 threads were removed, and
380will be removed in a future release of Perl 5.
c32124fe 381
f1a3ce43
NC
382=item Attribute "unique" is deprecated
383
57dedab9
FC
384(D deprecated) You have used the attributes pragma to modify
385the "unique" attribute on an array, hash or scalar reference.
386The :unique attribute has had no effect since Perl 5.8.8, and
387will be removed in a future release of Perl 5.
f1a3ce43 388
ccce04a4
FC
389=item av_reify called on tied array
390
391(S debugging) This indicates that something went wrong and Perl got I<very>
392confused about C<@_> or C<@DB::args> being tied.
393
de42a5a9 394=item Bad arg length for %s, is %u, should be %d
a0d0e21e 395
be771a83
GS
396(F) You passed a buffer of the wrong size to one of msgctl(), semctl()
397or shmctl(). In C parlance, the correct sizes are, respectively,
5f05dabc 398S<sizeof(struct msqid_ds *)>, S<sizeof(struct semid_ds *)>, and
a0d0e21e
LW
399S<sizeof(struct shmid_ds *)>.
400
7a95317d
GS
401=item Bad evalled substitution pattern
402
496a33f5 403(F) You've used the C</e> switch to evaluate the replacement for a
7a95317d
GS
404substitution, but perl found a syntax error in the code to evaluate,
405most likely an unexpected right brace '}'.
406
a0d0e21e
LW
407=item Bad filehandle: %s
408
be771a83
GS
409(F) A symbol was passed to something wanting a filehandle, but the
410symbol has no filehandle associated with it. Perhaps you didn't do an
411open(), or did it in another package.
a0d0e21e
LW
412
413=item Bad free() ignored
414
be771a83 415(S malloc) An internal routine called free() on something that had never
fa816bf3 416been malloc()ed in the first place. Mandatory, but can be disabled by
9ea8bc6d 417setting environment variable C<PERL_BADFREE> to 0.
33c8a3fe 418
9ea8bc6d 419This message can be seen quite often with DB_File on systems with "hard"
6903afa2 420dynamic linking, like C<AIX> and C<OS/2>. It is a bug of C<Berkeley DB>
be771a83 421which is left unnoticed if C<DB> uses I<forgiving> system malloc().
a0d0e21e 422
aa689395 423=item Bad hash
424
425(P) One of the internal hash routines was passed a null HV pointer.
426
6df41af2
GS
427=item Badly placed ()'s
428
429(A) You've accidentally run your script through B<csh> instead
430of Perl. Check the #! line, or manually feed your script into
431Perl yourself.
432
a7cb8dae 433=item Bad name after %s
a0d0e21e 434
be771a83
GS
435(F) You started to name a symbol by using a package prefix, and then
436didn't finish the symbol. In particular, you can't interpolate outside
437of quotes, so
a0d0e21e
LW
438
439 $var = 'myvar';
440 $sym = mypack::$var;
441
442is not the same as
443
444 $var = 'myvar';
445 $sym = "mypack::$var";
446
88e1f1a2
JV
447=item Bad plugin affecting keyword '%s'
448
449(F) An extension using the keyword plugin mechanism violated the
450plugin API.
451
4ad56ec9
IZ
452=item Bad realloc() ignored
453
6903afa2
FC
454(S malloc) An internal routine called realloc() on something that
455had never been malloc()ed in the first place. Mandatory, but can
456be disabled by setting the environment variable C<PERL_BADFREE> to 1.
4ad56ec9 457
a0d0e21e
LW
458=item Bad symbol for array
459
460(P) An internal request asked to add an array entry to something that
461wasn't a symbol table entry.
462
4df3f177
SP
463=item Bad symbol for dirhandle
464
465(P) An internal request asked to add a dirhandle entry to something
466that wasn't a symbol table entry.
467
a0d0e21e
LW
468=item Bad symbol for filehandle
469
be771a83
GS
470(P) An internal request asked to add a filehandle entry to something
471that wasn't a symbol table entry.
a0d0e21e
LW
472
473=item Bad symbol for hash
474
475(P) An internal request asked to add a hash entry to something that
476wasn't a symbol table entry.
477
34d09196
GS
478=item Bareword found in conditional
479
be771a83
GS
480(W bareword) The compiler found a bareword where it expected a
481conditional, which often indicates that an || or && was parsed as part
482of the last argument of the previous construct, for example:
34d09196
GS
483
484 open FOO || die;
485
be771a83
GS
486It may also indicate a misspelled constant that has been interpreted as
487a bareword:
34d09196
GS
488
489 use constant TYPO => 1;
490 if (TYOP) { print "foo" }
491
492The C<strict> pragma is useful in avoiding such errors.
493
6df41af2
GS
494=item Bareword "%s" not allowed while "strict subs" in use
495
496(F) With "strict subs" in use, a bareword is only allowed as a
be771a83
GS
497subroutine identifier, in curly brackets or to the left of the "=>"
498symbol. Perhaps you need to predeclare a subroutine?
6df41af2
GS
499
500=item Bareword "%s" refers to nonexistent package
501
be771a83
GS
502(W bareword) You used a qualified bareword of the form C<Foo::>, but the
503compiler saw no other uses of that namespace before that point. Perhaps
504you need to predeclare a package?
6df41af2 505
a0d0e21e
LW
506=item BEGIN failed--compilation aborted
507
be771a83
GS
508(F) An untrapped exception was raised while executing a BEGIN
509subroutine. Compilation stops immediately and the interpreter is
510exited.
a0d0e21e 511
68dc0745 512=item BEGIN not safe after errors--compilation aborted
513
514(F) Perl found a C<BEGIN {}> subroutine (or a C<use> directive, which
be771a83
GS
515implies a C<BEGIN {}>) after one or more compilation errors had already
516occurred. Since the intended environment for the C<BEGIN {}> could not
517be guaranteed (due to the errors), and since subsequent code likely
518depends on its correct operation, Perl just gave up.
68dc0745 519
6df41af2
GS
520=item \1 better written as $1
521
be771a83
GS
522(W syntax) Outside of patterns, backreferences live on as variables.
523The use of backslashes is grandfathered on the right-hand side of a
524substitution, but stylistically it's better to use the variable form
525because other Perl programmers will expect it, and it works better if
526there are more than 9 backreferences.
6df41af2 527
252aa082
JH
528=item Binary number > 0b11111111111111111111111111111111 non-portable
529
e476b1b5 530(W portable) The binary number you specified is larger than 2**32-1
9e24b6e2
JH
531(4294967295) and therefore non-portable between systems. See
532L<perlport> for more on portability concerns.
252aa082 533
69282e91 534=item bind() on closed socket %s
a0d0e21e 535
be771a83
GS
536(W closed) You tried to do a bind on a closed socket. Did you forget to
537check the return value of your socket() call? See L<perlfunc/bind>.
a0d0e21e 538
c289d2f7
JH
539=item binmode() on closed filehandle %s
540
541(W unopened) You tried binmode() on a filehandle that was never opened.
4dcecea4 542Check your control flow and number of arguments.
c289d2f7 543
f866a7cd
FC
544=item "\b{" is deprecated; use "\b\{" instead
545
546=item "\B{" is deprecated; use "\B\{" instead
547
548(W deprecated, regexp) Use of an unescaped "{" immediately following a
549C<\b> or C<\B> is now deprecated so as to reserve its use for Perl
550itself in a future release.
551
c5a0f51a
JH
552=item Bit vector size > 32 non-portable
553
e476b1b5 554(W portable) Using bit vector sizes larger than 32 is non-portable.
c5a0f51a 555
043c750c 556=item Bizarre copy of %s
4633a7c4 557
be771a83 558(P) Perl detected an attempt to copy an internal value that is not
4dcecea4 559copiable.
4633a7c4 560
f675dbe5
CB
561=item Buffer overflow in prime_env_iter: %s
562
be771a83
GS
563(W internal) A warning peculiar to VMS. While Perl was preparing to
564iterate over %ENV, it encountered a logical name or symbol definition
565which was too long, so it was truncated to the string shown.
f675dbe5 566
7fcfef4d
FC
567=item Bizarre SvTYPE [%d]
568
569(P) When starting a new thread or return values from a thread, Perl
570encountered an invalid data type.
571
a0d0e21e
LW
572=item Callback called exit
573
4929bf7b 574(F) A subroutine invoked from an external package via call_sv()
a0d0e21e
LW
575exited by calling exit.
576
6df41af2 577=item %s() called too early to check prototype
f675dbe5 578
be771a83
GS
579(W prototype) You've called a function that has a prototype before the
580parser saw a definition or declaration for it, and Perl could not check
581that the call conforms to the prototype. You need to either add an
582early prototype declaration for the subroutine in question, or move the
583subroutine definition ahead of the call to get proper prototype
584checking. Alternatively, if you are certain that you're calling the
585function correctly, you may put an ampersand before the name to avoid
586the warning. See L<perlsub>.
f675dbe5 587
49704364 588=item Cannot compress integer in pack
0258719b
NC
589
590(F) An argument to pack("w",...) was too large to compress. The BER
591compressed integer format can only be used with positive integers, and you
592attempted to compress Infinity or a very large number (> 1e308).
593See L<perlfunc/pack>.
594
49704364 595=item Cannot compress negative numbers in pack
0258719b
NC
596
597(F) An argument to pack("w",...) was negative. The BER compressed integer
598format can only be used with positive integers. See L<perlfunc/pack>.
599
5c1f4d79
NC
600=item Cannot convert a reference to %s to typeglob
601
6903afa2
FC
602(F) You manipulated Perl's symbol table directly, stored a reference
603in it, then tried to access that symbol via conventional Perl syntax.
604The access triggers Perl to autovivify that typeglob, but it there is
605no legal conversion from that type of reference to a typeglob.
5c1f4d79 606
4040665a 607=item Cannot copy to %s
ba2fdce6
NC
608
609(P) Perl detected an attempt to copy a value to an internal type that cannot
4dcecea4 610be directly assigned to.
ba2fdce6 611
b5d97229
RGS
612=item Cannot find encoding "%s"
613
614(S io) You tried to apply an encoding that did not exist to a filehandle,
615either with open() or binmode().
616
ce65bc73
FC
617=item Cannot tie unreifiable array
618
619(P) You somehow managed to call C<tie> on an array that does not
620keep a reference count on its arguments and cannot be made to
621do so. Such arrays are not even supposed to be accessible to
622Perl code, but are only used internally.
623
96ebfdd7
RK
624=item Can only compress unsigned integers in pack
625
626(F) An argument to pack("w",...) was not an integer. The BER compressed
627integer format can only be used with positive integers, and you attempted
628to compress something else. See L<perlfunc/pack>.
629
a0d0e21e
LW
630=item Can't bless non-reference value
631
632(F) Only hard references may be blessed. This is how Perl "enforces"
633encapsulation of objects. See L<perlobj>.
634
dc57907a
RGS
635=item Can't "break" in a loop topicalizer
636
0d863452 637(F) You called C<break>, but you're in a C<foreach> block rather than
6903afa2 638a C<given> block. You probably meant to use C<next> or C<last>.
0d863452
RH
639
640=item Can't "break" outside a given block
dc57907a 641
0d863452
RH
642(F) You called C<break>, but you're not inside a C<given> block.
643
6df41af2
GS
644=item Can't call method "%s" on an undefined value
645
646(F) You used the syntax of a method call, but the slot filled by the
be771a83
GS
647object reference or package name contains an undefined value. Something
648like this will reproduce the error:
6df41af2
GS
649
650 $BADREF = undef;
651 process $BADREF 1,2,3;
652 $BADREF->process(1,2,3);
653
a0d0e21e
LW
654=item Can't call method "%s" on unblessed reference
655
54310121 656(F) A method call must know in what package it's supposed to run. It
be771a83
GS
657ordinarily finds this out from the object reference you supply, but you
658didn't supply an object reference in this case. A reference isn't an
659object reference until it has been blessed. See L<perlobj>.
a0d0e21e
LW
660
661=item Can't call method "%s" without a package or object reference
662
663(F) You used the syntax of a method call, but the slot filled by the
be771a83
GS
664object reference or package name contains an expression that returns a
665defined value which is neither an object reference nor a package name.
72b5445b
GS
666Something like this will reproduce the error:
667
668 $BADREF = 42;
669 process $BADREF 1,2,3;
670 $BADREF->process(1,2,3);
671
a0d0e21e
LW
672=item Can't chdir to %s
673
674(F) You called C<perl -x/foo/bar>, but C</foo/bar> is not a directory
675that you can chdir to, possibly because it doesn't exist.
676
0545a864 677=item Can't check filesystem of script "%s" for nosuid
104d25b7 678
be771a83
GS
679(P) For some reason you can't check the filesystem of the script for
680nosuid.
104d25b7 681
22e74366 682=item Can't coerce %s to %s in %s
a0d0e21e
LW
683
684(F) Certain types of SVs, in particular real symbol table entries
55497cff 685(typeglobs), can't be forced to stop being what they are. So you can't
a0d0e21e
LW
686say things like:
687
688 *foo += 1;
689
690You CAN say
691
692 $foo = *foo;
693 $foo += 1;
694
695but then $foo no longer contains a glob.
696
0d863452 697=item Can't "continue" outside a when block
dc57907a 698
0d863452
RH
699(F) You called C<continue>, but you're not inside a C<when>
700or C<default> block.
701
a0d0e21e
LW
702=item Can't create pipe mailbox
703
be771a83
GS
704(P) An error peculiar to VMS. The process is suffering from exhausted
705quotas or other plumbing problems.
a0d0e21e 706
eb64745e
GS
707=item Can't declare %s in "%s"
708
30c282f6
NC
709(F) Only scalar, array, and hash variables may be declared as "my", "our" or
710"state" variables. They must have ordinary identifiers as names.
a0d0e21e 711
fc7debfb
FC
712=item Can't "default" outside a topicalizer
713
714(F) You have used a C<default> block that is neither inside a
715C<foreach> loop nor a C<given> block. (Note that this error is
716issued on exit from the C<default> block, so you won't get the
717error if you use an explicit C<continue>.)
718
6df41af2
GS
719=item Can't do inplace edit: %s is not a regular file
720
be771a83
GS
721(S inplace) You tried to use the B<-i> switch on a special file, such as
722a file in /dev, or a FIFO. The file was ignored.
6df41af2 723
a0d0e21e
LW
724=item Can't do inplace edit on %s: %s
725
be771a83
GS
726(S inplace) The creation of the new file failed for the indicated
727reason.
a0d0e21e 728
54310121 729=item Can't do inplace edit without backup
a0d0e21e 730
be771a83
GS
731(F) You're on a system such as MS-DOS that gets confused if you try
732reading from a deleted (but still opened) file. You have to say
733C<-i.bak>, or some such.
a0d0e21e 734
10f9c03d 735=item Can't do inplace edit: %s would not be unique
a0d0e21e 736
e476b1b5 737(S inplace) Your filesystem does not support filenames longer than 14
10f9c03d
CK
738characters and Perl was unable to create a unique filename during
739inplace editing with the B<-i> switch. The file was ignored.
a0d0e21e 740
7253e4e3 741=item Can't do {n,m} with n > m in regex; marked by <-- HERE in m/%s/
a0d0e21e 742
6903afa2
FC
743(F) Minima must be less than or equal to maxima. If you really
744want your regexp to match something 0 times, just put {0}. The
745<-- HERE shows in the regular expression about where the problem
746was discovered. See L<perlre>.
a0d0e21e 747
a0d0e21e
LW
748=item Can't do waitpid with flags
749
be771a83
GS
750(F) This machine doesn't have either waitpid() or wait4(), so only
751waitpid() without flags is emulated.
a0d0e21e 752
a0d0e21e
LW
753=item Can't emulate -%s on #! line
754
be771a83
GS
755(F) The #! line specifies a switch that doesn't make sense at this
756point. For example, it'd be kind of silly to put a B<-x> on the #!
757line.
a0d0e21e 758
1109a392
MHM
759=item Can't %s %s-endian %ss on this platform
760
761(F) Your platform's byte-order is neither big-endian nor little-endian,
762or it has a very strange pointer size. Packing and unpacking big- or
763little-endian floating point values and pointers may not be possible.
764See L<perlfunc/pack>.
765
a0d0e21e
LW
766=item Can't exec "%s": %s
767
d1be9408 768(W exec) A system(), exec(), or piped open call could not execute the
be771a83
GS
769named program for the indicated reason. Typical reasons include: the
770permissions were wrong on the file, the file wasn't found in
771C<$ENV{PATH}>, the executable in question was compiled for another
772architecture, or the #! line in a script points to an interpreter that
773can't be run for similar reasons. (Or maybe your system doesn't support
774#! at all.)
a0d0e21e
LW
775
776=item Can't exec %s
777
be771a83
GS
778(F) Perl was trying to execute the indicated program for you because
779that's what the #! line said. If that's not what you wanted, you may
780need to mention "perl" on the #! line somewhere.
a0d0e21e
LW
781
782=item Can't execute %s
783
be771a83
GS
784(F) You used the B<-S> switch, but the copies of the script to execute
785found in the PATH did not have correct permissions.
2a92aaa0 786
6df41af2 787=item Can't find an opnumber for "%s"
2a92aaa0 788
be771a83
GS
789(F) A string of a form C<CORE::word> was given to prototype(), but there
790is no builtin with the name C<word>.
6df41af2 791
56ca2fc0
JH
792=item Can't find %s character property "%s"
793
794(F) You used C<\p{}> or C<\P{}> but the character property by that name
6903afa2 795could not be found. Maybe you misspelled the name of the property?
e1b711da
KW
796See L<perluniprops/Properties accessible through \p{} and \P{}>
797for a complete list of available properties.
56ca2fc0 798
6df41af2
GS
799=item Can't find label %s
800
be771a83
GS
801(F) You said to goto a label that isn't mentioned anywhere that it's
802possible for us to go to. See L<perlfunc/goto>.
2a92aaa0
GS
803
804=item Can't find %s on PATH
805
be771a83
GS
806(F) You used the B<-S> switch, but the script to execute could not be
807found in the PATH.
a0d0e21e 808
6df41af2 809=item Can't find %s on PATH, '.' not in PATH
a0d0e21e 810
be771a83
GS
811(F) You used the B<-S> switch, but the script to execute could not be
812found in the PATH, or at least not with the correct permissions. The
813script exists in the current directory, but PATH prohibits running it.
a0d0e21e
LW
814
815=item Can't find string terminator %s anywhere before EOF
816
be771a83
GS
817(F) Perl strings can stretch over multiple lines. This message means
818that the closing delimiter was omitted. Because bracketed quotes count
819nesting levels, the following is missing its final parenthesis:
a0d0e21e 820
fb73857a 821 print q(The character '(' starts a side comment.);
822
97b3d10f 823If you're getting this error from a here-document, you may have
b6b8cb97
FC
824included unseen whitespace before or after your closing tag or there
825may not be a linebreak after it. A good programmer's editor will have
826a way to help you find these characters (or lack of characters). See
827L<perlop> for the full details on here-documents.
a0d0e21e 828
660a4616
TS
829=item Can't find Unicode property definition "%s"
830
5f8ad6b6
FC
831(F) You may have tried to use C<\p> which means a Unicode
832property (for example C<\p{Lu}> matches all uppercase
fa816bf3 833letters). If you did mean to use a Unicode property, see
e1b711da 834L<perluniprops/Properties accessible through \p{} and \P{}>
6903afa2 835for a complete list of available properties. If you didn't
fa816bf3
FC
836mean to use a Unicode property, escape the C<\p>, either by
837C<\\p> (just the C<\p>) or by C<\Q\p> (the rest of the string, or
5f8ad6b6 838until C<\E>).
660a4616 839
b3647a36 840=item Can't fork: %s
a0d0e21e 841
be771a83
GS
842(F) A fatal error occurred while trying to fork while opening a
843pipeline.
a0d0e21e 844
b3647a36
SR
845=item Can't fork, trying again in 5 seconds
846
c973c02e 847(W pipe) A fork in a piped open failed with EAGAIN and will be retried
b3647a36
SR
848after five seconds.
849
748a9306
LW
850=item Can't get filespec - stale stat buffer?
851
be771a83
GS
852(S) A warning peculiar to VMS. This arises because of the difference
853between access checks under VMS and under the Unix model Perl assumes.
854Under VMS, access checks are done by filename, rather than by bits in
855the stat buffer, so that ACLs and other protections can be taken into
856account. Unfortunately, Perl assumes that the stat buffer contains all
857the necessary information, and passes it, instead of the filespec, to
2fe2bdfd 858the access-checking routine. It will try to retrieve the filespec using
be771a83
GS
859the device name and FID present in the stat buffer, but this works only
860if you haven't made a subsequent call to the CRTL stat() routine,
861because the device name is overwritten with each call. If this warning
2fe2bdfd
FC
862appears, the name lookup failed, and the access-checking routine gave up
863and returned FALSE, just to be conservative. (Note: The access-checking
be771a83
GS
864routine knows about the Perl C<stat> operator and file tests, so you
865shouldn't ever see this warning in response to a Perl command; it arises
866only if some internal code takes stat buffers lightly.)
748a9306 867
a0d0e21e
LW
868=item Can't get pipe mailbox device name
869
be771a83
GS
870(P) An error peculiar to VMS. After creating a mailbox to act as a
871pipe, Perl can't retrieve its name for later use.
a0d0e21e
LW
872
873=item Can't get SYSGEN parameter value for MAXBUF
874
748a9306
LW
875(P) An error peculiar to VMS. Perl asked $GETSYI how big you want your
876mailbox buffers to be, and didn't get an answer.
a0d0e21e 877
6df41af2 878=item Can't "goto" into the middle of a foreach loop
a0d0e21e 879
be771a83
GS
880(F) A "goto" statement was executed to jump into the middle of a foreach
881loop. You can't get there from here. See L<perlfunc/goto>.
6df41af2
GS
882
883=item Can't "goto" out of a pseudo block
884
be771a83
GS
885(F) A "goto" statement was executed to jump out of what might look like
886a block, except that it isn't a proper block. This usually occurs if
887you tried to jump out of a sort() block or subroutine, which is a no-no.
888See L<perlfunc/goto>.
a0d0e21e 889
9850bf21 890=item Can't goto subroutine from a sort sub (or similar callback)
cd299c6e 891
9850bf21
RH
892(F) The "goto subroutine" call can't be used to jump out of the
893comparison sub for a sort(), or from a similar callback (such
894as the reduce() function in List::Util).
895
c74ace89 896=item Can't goto subroutine from an eval-%s
b150fb22 897
be771a83 898(F) The "goto subroutine" call can't be used to jump out of an eval
c74ace89 899"string" or block.
b150fb22 900
6df41af2
GS
901=item Can't goto subroutine outside a subroutine
902
be771a83
GS
903(F) The deeply magical "goto subroutine" call can only replace one
904subroutine call for another. It can't manufacture one out of whole
905cloth. In general you should be calling it out of only an AUTOLOAD
906routine anyway. See L<perlfunc/goto>.
6df41af2 907
0b5b802d
GS
908=item Can't ignore signal CHLD, forcing to default
909
be771a83
GS
910(W signal) Perl has detected that it is being run with the SIGCHLD
911signal (sometimes known as SIGCLD) disabled. Since disabling this
912signal will interfere with proper determination of exit status of child
913processes, Perl has reset the signal to its default value. This
914situation typically indicates that the parent program under which Perl
915may be running (e.g. cron) is being very careless.
0b5b802d 916
e2c0f81f
DG
917=item Can't kill a non-numeric process ID
918
919(F) Process identifiers must be (signed) integers. It is a fatal error to
920attempt to kill() an undefined, empty-string or otherwise non-numeric
921process identifier.
922
6df41af2 923=item Can't "last" outside a loop block
4633a7c4 924
6df41af2 925(F) A "last" statement was executed to break out of the current block,
be771a83
GS
926except that there's this itty bitty problem called there isn't a current
927block. Note that an "if" or "else" block doesn't count as a "loopish"
928block, as doesn't a block given to sort(), map() or grep(). You can
929usually double the curlies to get the same effect though, because the
930inner curlies will be considered a block that loops once. See
931L<perlfunc/last>.
4633a7c4 932
2c7d6b9c
RGS
933=item Can't linearize anonymous symbol table
934
935(F) Perl tried to calculate the method resolution order (MRO) of a
936package, but failed because the package stash has no name.
937
b8170e59
JB
938=item Can't load '%s' for module %s
939
6903afa2
FC
940(F) The module you tried to load failed to load a dynamic extension.
941This may either mean that you upgraded your version of perl to one
942that is incompatible with your old dynamic extensions (which is known
943to happen between major versions of perl), or (more likely) that your
944dynamic extension was built against an older version of the library
945that is installed on your system. You may need to rebuild your old
946dynamic extensions.
b8170e59 947
748a9306
LW
948=item Can't localize lexical variable %s
949
2ba9eb46 950(F) You used local on a variable name that was previously declared as a
b7e4ecc1
FC
951lexical variable using "my" or "state". This is not allowed. If you
952want to localize a package variable of the same name, qualify it with
953the package name.
748a9306 954
6df41af2 955=item Can't localize through a reference
4727527e 956
6df41af2
GS
957(F) You said something like C<local $$ref>, which Perl can't currently
958handle, because when it goes to restore the old value of whatever $ref
be771a83 959pointed to after the scope of the local() is finished, it can't be sure
64977eb6 960that $ref will still be a reference.
4727527e 961
ea071790 962=item Can't locate %s
ec889f3a 963
fa816bf3
FC
964(F) You said to C<do> (or C<require>, or C<use>) a file that couldn't be found.
965Perl looks for the file in all the locations mentioned in @INC, unless
966the file name included the full path to the file. Perhaps you need
967to set the PERL5LIB or PERL5OPT environment variable to say where the
968extra library is, or maybe the script needs to add the library name
be771a83
GS
969to @INC. Or maybe you just misspelled the name of the file. See
970L<perlfunc/require> and L<lib>.
a0d0e21e 971
6df41af2
GS
972=item Can't locate auto/%s.al in @INC
973
be771a83
GS
974(F) A function (or method) was called in a package which allows
975autoload, but there is no function to autoload. Most probable causes
976are a misprint in a function/method name or a failure to C<AutoSplit>
977the file, say, by doing C<make install>.
6df41af2 978
b8170e59
JB
979=item Can't locate loadable object for module %s in @INC
980
981(F) The module you loaded is trying to load an external library, like
d70d8e57 982for example, F<foo.so> or F<bar.dll>, but the L<DynaLoader> module was
b8170e59
JB
983unable to locate this library. See L<DynaLoader>.
984
a0d0e21e
LW
985=item Can't locate object method "%s" via package "%s"
986
987(F) You called a method correctly, and it correctly indicated a package
988functioning as a class, but that package doesn't define that particular
2ba9eb46 989method, nor does any of its base classes. See L<perlobj>.
a0d0e21e
LW
990
991=item Can't locate package %s for @%s::ISA
992
be771a83
GS
993(W syntax) The @ISA array contained the name of another package that
994doesn't seem to exist.
a0d0e21e 995
2f7da168
RK
996=item Can't locate PerlIO%s
997
998(F) You tried to use in open() a PerlIO layer that does not exist,
999e.g. open(FH, ">:nosuchlayer", "somefile").
1000
f4ad53f4 1001=item Can't make list assignment to %ENV on this system
3e3baf6d 1002
be771a83
GS
1003(F) List assignment to %ENV is not supported on some systems, notably
1004VMS.
3e3baf6d 1005
a0d0e21e
LW
1006=item Can't modify %s in %s
1007
be771a83
GS
1008(F) You aren't allowed to assign to the item indicated, or otherwise try
1009to change it, such as with an auto-increment.
a0d0e21e 1010
54310121 1011=item Can't modify nonexistent substring
a0d0e21e
LW
1012
1013(P) The internal routine that does assignment to a substr() was handed
1014a NULL.
1015
6df41af2
GS
1016=item Can't modify non-lvalue subroutine call
1017
1018(F) Subroutines meant to be used in lvalue context should be declared as
2fe2bdfd 1019such. See L<perlsub/"Lvalue subroutines">.
6df41af2 1020
5f05dabc 1021=item Can't msgrcv to read-only var
a0d0e21e 1022
5f05dabc 1023(F) The target of a msgrcv must be modifiable to be used as a receive
a0d0e21e
LW
1024buffer.
1025
6df41af2
GS
1026=item Can't "next" outside a loop block
1027
1028(F) A "next" statement was executed to reiterate the current block, but
1029there isn't a current block. Note that an "if" or "else" block doesn't
be771a83
GS
1030count as a "loopish" block, as doesn't a block given to sort(), map() or
1031grep(). You can usually double the curlies to get the same effect
1032though, because the inner curlies will be considered a block that loops
1033once. See L<perlfunc/next>.
6df41af2 1034
a0d0e21e
LW
1035=item Can't open %s: %s
1036
c47ff5f1 1037(S inplace) The implicit opening of a file through use of the C<< <> >>
08e9d68e
DD
1038filehandle, either implicitly under the C<-n> or C<-p> command-line
1039switches, or explicitly, failed for the indicated reason. Usually this
be771a83
GS
1040is because you don't have read permission for a file which you named on
1041the command line.
a0d0e21e 1042
9a869a14
RGS
1043=item Can't open a reference
1044
1045(W io) You tried to open a scalar reference for reading or writing,
2fe2bdfd 1046using the 3-arg open() syntax:
9a869a14
RGS
1047
1048 open FH, '>', $ref;
1049
1050but your version of perl is compiled without perlio, and this form of
1051open is not supported.
1052
a0d0e21e
LW
1053=item Can't open bidirectional pipe
1054
be771a83
GS
1055(W pipe) You tried to say C<open(CMD, "|cmd|")>, which is not supported.
1056You can try any of several modules in the Perl library to do this, such
1057as IPC::Open2. Alternately, direct the pipe's output to a file using
1058">", and then read it in under a different file handle.
a0d0e21e 1059
748a9306
LW
1060=item Can't open error file %s as stderr
1061
be771a83
GS
1062(F) An error peculiar to VMS. Perl does its own command line
1063redirection, and couldn't open the file specified after '2>' or '2>>' on
1064the command line for writing.
748a9306
LW
1065
1066=item Can't open input file %s as stdin
1067
be771a83
GS
1068(F) An error peculiar to VMS. Perl does its own command line
1069redirection, and couldn't open the file specified after '<' on the
1070command line for reading.
748a9306
LW
1071
1072=item Can't open output file %s as stdout
1073
be771a83
GS
1074(F) An error peculiar to VMS. Perl does its own command line
1075redirection, and couldn't open the file specified after '>' or '>>' on
1076the command line for writing.
748a9306
LW
1077
1078=item Can't open output pipe (name: %s)
1079
be771a83
GS
1080(P) An error peculiar to VMS. Perl does its own command line
1081redirection, and couldn't open the pipe into which to send data destined
1082for stdout.
748a9306 1083
3b1cf97d 1084=item Can't open perl script "%s": %s
a0d0e21e
LW
1085
1086(F) The script you specified can't be opened for the indicated reason.
1087
fa3aa65a
JC
1088If you're debugging a script that uses #!, and normally relies on the
1089shell's $PATH search, the -S option causes perl to do that search, so
1090you don't have to type the path or C<`which $scriptname`>.
1091
6df41af2
GS
1092=item Can't read CRTL environ
1093
1094(S) A warning peculiar to VMS. Perl tried to read an element of %ENV
1095from the CRTL's internal environment array and discovered the array was
1096missing. You need to figure out where your CRTL misplaced its environ
be771a83
GS
1097or define F<PERL_ENV_TABLES> (see L<perlvms>) so that environ is not
1098searched.
6df41af2 1099
6df41af2
GS
1100=item Can't "redo" outside a loop block
1101
1102(F) A "redo" statement was executed to restart the current block, but
1103there isn't a current block. Note that an "if" or "else" block doesn't
1104count as a "loopish" block, as doesn't a block given to sort(), map()
1105or grep(). You can usually double the curlies to get the same effect
1106though, because the inner curlies will be considered a block that
1107loops once. See L<perlfunc/redo>.
1108
64977eb6 1109=item Can't remove %s: %s, skipping file
10f9c03d 1110
be771a83
GS
1111(S inplace) You requested an inplace edit without creating a backup
1112file. Perl was unable to remove the original file to replace it with
1113the modified file. The file was left unmodified.
10f9c03d 1114
a0d0e21e
LW
1115=item Can't rename %s to %s: %s, skipping file
1116
e476b1b5 1117(S inplace) The rename done by the B<-i> switch failed for some reason,
10f9c03d 1118probably because you don't have write permission to the directory.
a0d0e21e 1119
748a9306
LW
1120=item Can't reopen input pipe (name: %s) in binary mode
1121
be771a83
GS
1122(P) An error peculiar to VMS. Perl thought stdin was a pipe, and tried
1123to reopen it to accept binary data. Alas, it failed.
748a9306 1124
fe13d51d 1125=item Can't resolve method "%s" overloading "%s" in package "%s"
6df41af2 1126
1fa582fa
FC
1127(F)(P) Error resolving overloading specified by a method name (as
1128opposed to a subroutine reference): no such method callable via the
1129package. If the method name is C<???>, this is an internal error.
6df41af2 1130
cd06dffe
GS
1131=item Can't return %s from lvalue subroutine
1132
be771a83
GS
1133(F) Perl detected an attempt to return illegal lvalues (such as
1134temporary or readonly values) from a subroutine used as an lvalue. This
1135is not allowed.
cd06dffe 1136
96ebfdd7
RK
1137=item Can't return outside a subroutine
1138
1139(F) The return statement was executed in mainline code, that is, where
1140there was no subroutine call to return out of. See L<perlsub>.
1141
78f9721b
SM
1142=item Can't return %s to lvalue scalar context
1143
6903afa2
FC
1144(F) You tried to return a complete array or hash from an lvalue
1145subroutine, but you called the subroutine in a way that made Perl
1146think you meant to return only one value. You probably meant to
1147write parentheses around the call to the subroutine, which tell
1148Perl that the call should be in list context.
78f9721b 1149
a0d0e21e
LW
1150=item Can't stat script "%s"
1151
be771a83
GS
1152(P) For some reason you can't fstat() the script even though you have it
1153open already. Bizarre.
a0d0e21e 1154
a0d0e21e
LW
1155=item Can't take log of %g
1156
fb73857a 1157(F) For ordinary real numbers, you can't take the logarithm of a
6903afa2 1158negative number or zero. There's a Math::Complex package that comes
be771a83
GS
1159standard with Perl, though, if you really want to do that for the
1160negative numbers.
a0d0e21e
LW
1161
1162=item Can't take sqrt of %g
1163
1164(F) For ordinary real numbers, you can't take the square root of a
fb73857a 1165negative number. There's a Math::Complex package that comes standard
1166with Perl, though, if you really want to do that.
a0d0e21e
LW
1167
1168=item Can't undef active subroutine
1169
1170(F) You can't undefine a routine that's currently running. You can,
1171however, redefine it while it's running, and you can even undef the
1172redefined subroutine while the old routine is running. Go figure.
1173
c81225bc 1174=item Can't upgrade %s (%d) to %d
a0d0e21e 1175
be771a83
GS
1176(P) The internal sv_upgrade routine adds "members" to an SV, making it
1177into a more specialized kind of SV. The top several SV types are so
1178specialized, however, that they cannot be interconverted. This message
1179indicates that such a conversion was attempted.
a0d0e21e 1180
1db89ea5
BS
1181=item Can't use anonymous symbol table for method lookup
1182
e27ad1f2 1183(F) The internal routine that does method lookup was handed a symbol
1db89ea5
BS
1184table that doesn't have a name. Symbol tables can become anonymous
1185for example by undefining stashes: C<undef %Some::Package::>.
1186
96ebfdd7
RK
1187=item Can't use an undefined value as %s reference
1188
1189(F) A value used as either a hard reference or a symbolic reference must
1190be a defined value. This helps to delurk some insidious errors.
1191
6df41af2
GS
1192=item Can't use bareword ("%s") as %s ref while "strict refs" in use
1193
be771a83
GS
1194(F) Only hard references are allowed by "strict refs". Symbolic
1195references are disallowed. See L<perlref>.
6df41af2 1196
90b75b61 1197=item Can't use %! because Errno.pm is not available
1d2dff63 1198
20561843 1199(F) The first time the C<%!> hash is used, perl automatically loads the
6903afa2 1200Errno.pm module. The Errno module is expected to tie the %! hash to
1d2dff63
GS
1201provide symbolic names for C<$!> errno values.
1202
1109a392
MHM
1203=item Can't use both '<' and '>' after type '%c' in %s
1204
1205(F) A type cannot be forced to have both big-endian and little-endian
1206byte-order at the same time, so this combination of modifiers is not
1207allowed. See L<perlfunc/pack>.
1208
6df41af2
GS
1209=item Can't use %s for loop variable
1210
be771a83
GS
1211(F) Only a simple scalar variable may be used as a loop variable on a
1212foreach.
6df41af2 1213
aab6a793 1214=item Can't use global %s in "%s"
6df41af2 1215
be771a83
GS
1216(F) You tried to declare a magical variable as a lexical variable. This
1217is not allowed, because the magic can be tied to only one location
1218(namely the global variable) and it would be incredibly confusing to
1219have variables in your program that looked like magical variables but
6df41af2
GS
1220weren't.
1221
6d3b25aa
RGS
1222=item Can't use '%c' in a group with different byte-order in %s
1223
1224(F) You attempted to force a different byte-order on a type
1225that is already inside a group with a byte-order modifier.
1226For example you cannot force little-endianness on a type that
1227is inside a big-endian group.
1228
c07a80fd 1229=item Can't use "my %s" in sort comparison
1230
1231(F) The global variables $a and $b are reserved for sort comparisons.
c47ff5f1 1232You mentioned $a or $b in the same line as the <=> or cmp operator,
c07a80fd 1233and the variable had earlier been declared as a lexical variable.
1234Either qualify the sort variable with the package name, or rename the
1235lexical variable.
1236
a0d0e21e
LW
1237=item Can't use %s ref as %s ref
1238
1239(F) You've mixed up your reference types. You have to dereference a
1240reference of the type needed. You can use the ref() function to
1241test the type of the reference, if need be.
1242
748a9306 1243=item Can't use string ("%s") as %s ref while "strict refs" in use
a0d0e21e 1244
be771a83
GS
1245(F) Only hard references are allowed by "strict refs". Symbolic
1246references are disallowed. See L<perlref>.
a0d0e21e 1247
748a9306
LW
1248=item Can't use subscript on %s
1249
1250(F) The compiler tried to interpret a bracketed expression as a
1251subscript. But to the left of the brackets was an expression that
209e7cf1 1252didn't look like a hash or array reference, or anything else subscriptable.
748a9306 1253
6df41af2
GS
1254=item Can't use \%c to mean $%c in expression
1255
75b44862
GS
1256(W syntax) In an ordinary expression, backslash is a unary operator that
1257creates a reference to its argument. The use of backslash to indicate a
1258backreference to a matched substring is valid only as part of a regular
be771a83
GS
1259expression pattern. Trying to do this in ordinary Perl code produces a
1260value that prints out looking like SCALAR(0xdecaf). Use the $1 form
1261instead.
6df41af2 1262
810b8aa5
GS
1263=item Can't weaken a nonreference
1264
1265(F) You attempted to weaken something that was not a reference. Only
1266references can be weakened.
1267
fc7debfb
FC
1268=item Can't "when" outside a topicalizer
1269
1270(F) You have used a when() block that is neither inside a C<foreach>
1271loop nor a C<given> block. (Note that this error is issued on exit
1272from the C<when> block, so you won't get the error if the match fails,
1273or if you use an explicit C<continue>.)
1274
5f05dabc 1275=item Can't x= to read-only value
a0d0e21e 1276
be771a83
GS
1277(F) You tried to repeat a constant value (often the undefined value)
1278with an assignment operator, which implies modifying the value itself.
a0d0e21e
LW
1279Perhaps you need to copy the value to a temporary, and repeat that.
1280
4a68bf9d 1281=item Character following "\c" must be ASCII
f9d13529 1282
1fa582fa 1283(F)(W deprecated, syntax) In C<\cI<X>>, I<X> must be an ASCII character.
79ef86ee 1284It is planned to make this fatal in all instances in Perl 5.18. In the
17a3df4c
KW
1285cases where it isn't fatal, the character this evaluates to is
1286derived by exclusive or'ing the code point of this character with 0x40.
1287
1288Note that non-alphabetic ASCII characters are discouraged here as well.
f9d13529 1289
f337b084 1290=item Character in 'C' format wrapped in pack
ac7cd81a
SC
1291
1292(W pack) You said
1293
1294 pack("C", $x)
1295
1296where $x is either less than 0 or more than 255; the C<"C"> format is
1297only for encoding native operating system characters (ASCII, EBCDIC,
1298and so on) and not for Unicode characters, so Perl behaved as if you meant
1299
1300 pack("C", $x & 255)
1301
1302If you actually want to pack Unicode codepoints, use the C<"U"> format
1303instead.
1304
f337b084
TH
1305=item Character in 'W' format wrapped in pack
1306
1307(W pack) You said
1308
1309 pack("U0W", $x)
1310
6903afa2
FC
1311where $x is either less than 0 or more than 255. However, C<U0>-mode
1312expects all values to fall in the interval [0, 255], so Perl behaved
1313as if you meant:
f337b084
TH
1314
1315 pack("U0W", $x & 255)
1316
1317=item Character in 'c' format wrapped in pack
ac7cd81a
SC
1318
1319(W pack) You said
1320
1321 pack("c", $x)
1322
1323where $x is either less than -128 or more than 127; the C<"c"> format
1324is only for encoding native operating system characters (ASCII, EBCDIC,
1325and so on) and not for Unicode characters, so Perl behaved as if you meant
1326
1327 pack("c", $x & 255);
1328
1329If you actually want to pack Unicode codepoints, use the C<"U"> format
1330instead.
1331
f337b084
TH
1332=item Character in '%c' format wrapped in unpack
1333
1334(W unpack) You tried something like
1335
1336 unpack("H", "\x{2a1}")
1337
1a147d38 1338where the format expects to process a byte (a character with a value
6903afa2
FC
1339below 256), but a higher value was provided instead. Perl uses the
1340value modulus 256 instead, as if you had provided:
f337b084
TH
1341
1342 unpack("H", "\x{a1}")
1343
1344=item Character(s) in '%c' format wrapped in pack
1345
1346(W pack) You tried something like
1347
1348 pack("u", "\x{1f3}b")
1349
1a147d38 1350where the format expects to process a sequence of bytes (character with a
6903afa2 1351value below 256), but some of the characters had a higher value. Perl
f337b084
TH
1352uses the character values modulus 256 instead, as if you had provided:
1353
1354 pack("u", "\x{f3}b")
1355
1356=item Character(s) in '%c' format wrapped in unpack
1357
1358(W unpack) You tried something like
1359
1360 unpack("s", "\x{1f3}b")
1361
1a147d38 1362where the format expects to process a sequence of bytes (character with a
6903afa2 1363value below 256), but some of the characters had a higher value. Perl
f337b084
TH
1364uses the character values modulus 256 instead, as if you had provided:
1365
1366 unpack("s", "\x{f3}b")
1367
f866a7cd
FC
1368=item "\c{" is deprecated and is more clearly written as ";"
1369
1370(D deprecated, syntax) The C<\cI<X>> construct is intended to be a way
1371to specify non-printable characters. You used it with a "{" which
1372evaluates to ";", which is printable. It is planned to remove the
79ef86ee 1373ability to specify a semi-colon this way in Perl 5.18. Just use a
f866a7cd
FC
1374semi-colon or a backslash-semi-colon without the "\c".
1375
1376=item "\c%c" is more clearly written simply as "%s"
1377
1378(W syntax) The C<\cI<X>> construct is intended to be a way to specify
1379non-printable characters. You used it for a printable one, which is better
1380written as simply itself, perhaps preceded by a backslash for non-word
1381characters.
1382
96ebfdd7
RK
1383=item close() on unopened filehandle %s
1384
1385(W unopened) You tried to close a filehandle that was never opened.
1386
abc7ecad
SP
1387=item closedir() attempted on invalid dirhandle %s
1388
1389(W io) The dirhandle you tried to close is either closed or not really
1390a dirhandle. Check your control flow.
1391
541ed3a9
FC
1392=item Closure prototype called
1393
1394(F) If a closure has attributes, the subroutine passed to an attribute
1395handler is the prototype that is cloned when a new closure is created.
1396This subroutine cannot be called.
1397
49704364
WL
1398=item Code missing after '/'
1399
6903afa2
FC
1400(F) You had a (sub-)template that ends with a '/'. There must be
1401another template code following the slash. See L<perlfunc/pack>.
49704364 1402
0876b9a0
KW
1403=item Code point 0x%X is not Unicode, may not be portable
1404
c634fdd3 1405=item Code point 0x%X is not Unicode, all \p{} matches fail; all \P{} matches succeed
9ae3ac1a 1406
1b64326b
FC
1407(W utf8, non_unicode) You had a code point above the Unicode maximum
1408of U+10FFFF.
1409
1410Perl allows strings to contain a superset of Unicode code points, up
1411to the limit of what is storable in an unsigned integer on your system,
1412but these may not be accepted by other languages/systems. At one time,
1413it was legal in some standards to have code points up to 0x7FFF_FFFF,
1414but not higher. Code points above 0xFFFF_FFFF require larger than a
141532 bit word.
0876b9a0 1416
9ae3ac1a
KW
1417None of the Unicode or Perl-defined properties will match a non-Unicode
1418code point. For example,
1419
1420 chr(0x7FF_FFFF) =~ /\p{Any}/
1421
1422will not match, because the code point is not in Unicode. But
1423
1424 chr(0x7FF_FFFF) =~ /\P{Any}/
1425
1426will match.
1427
94b42e47
KW
1428This may be counterintuitive at times, as both these fail:
1429
1430 chr(0x110000) =~ \p{ASCII_Hex_Digit=True} # Fails.
1431 chr(0x110000) =~ \p{ASCII_Hex_Digit=False} # Also fails!
1432
1433and both these succeed:
1434
1435 chr(0x110000) =~ \P{ASCII_Hex_Digit=True} # Succeeds.
1436 chr(0x110000) =~ \P{ASCII_Hex_Digit=False} # Also succeeds!
1437
6df41af2
GS
1438=item %s: Command not found
1439
be771a83
GS
1440(A) You've accidentally run your script through B<csh> instead of Perl.
1441Check the #! line, or manually feed your script into Perl yourself.
6df41af2 1442
7a2e2cd6 1443=item Compilation failed in require
1444
1445(F) Perl could not compile a file specified in a C<require> statement.
be771a83
GS
1446Perl uses this generic message when none of the errors that it
1447encountered were severe enough to halt compilation immediately.
7a2e2cd6 1448
c3464db5
DD
1449=item Complex regular subexpression recursion limit (%d) exceeded
1450
be771a83
GS
1451(W regexp) The regular expression engine uses recursion in complex
1452situations where back-tracking is required. Recursion depth is limited
1453to 32766, or perhaps less in architectures where the stack cannot grow
1454arbitrarily. ("Simple" and "medium" situations are handled without
1455recursion and are not subject to a limit.) Try shortening the string
1456under examination; looping in Perl code (e.g. with C<while>) rather than
1457in the regular expression engine; or rewriting the regular expression so
c2e66d9e 1458that it is simpler or backtracks less. (See L<perlfaq2> for information
be771a83 1459on I<Mastering Regular Expressions>.)
c3464db5 1460
38875929
DM
1461=item cond_broadcast() called on unlocked variable
1462
6903afa2
FC
1463(W threads) Within a thread-enabled program, you tried to
1464call cond_broadcast() on a variable which wasn't locked.
1465The cond_broadcast() function is used to wake up another thread
1466that is waiting in a cond_wait(). To ensure that the signal isn't
1467sent before the other thread has a chance to enter the wait, it
1468is usual for the signaling thread first to wait for a lock on
1469variable. This lock attempt will only succeed after the other
1470thread has entered cond_wait() and thus relinquished the lock.
38875929 1471
38875929
DM
1472=item cond_signal() called on unlocked variable
1473
6903afa2
FC
1474(W threads) Within a thread-enabled program, you tried to
1475call cond_signal() on a variable which wasn't locked. The
1476cond_signal() function is used to wake up another thread that
1477is waiting in a cond_wait(). To ensure that the signal isn't
1478sent before the other thread has a chance to enter the wait, it
1479is usual for the signaling thread first to wait for a lock on
1480variable. This lock attempt will only succeed after the other
1481thread has entered cond_wait() and thus relinquished the lock.
38875929 1482
69282e91 1483=item connect() on closed socket %s
a0d0e21e 1484
be771a83
GS
1485(W closed) You tried to do a connect on a closed socket. Did you forget
1486to check the return value of your socket() call? See
1487L<perlfunc/connect>.
a0d0e21e 1488
41ab332f 1489=item Constant(%s)%s: %s
6df41af2 1490
be771a83
GS
1491(F) The parser found inconsistencies either while attempting to define
1492an overloaded constant, or when trying to find the character name
1493specified in the C<\N{...}> escape. Perhaps you forgot to load the
fbb93542 1494corresponding L<overload> pragma?.
6df41af2 1495
fc8cd66c
YO
1496=item Constant(%s)%s: %s in regex; marked by <-- HERE in m/%s/
1497
1a147d38 1498(F) The parser found inconsistencies while attempting to find
fbb93542 1499the character name specified in the C<\N{...}> escape.
fc8cd66c 1500
779c5bc9
GS
1501=item Constant is not %s reference
1502
1503(F) A constant value (perhaps declared using the C<use constant> pragma)
be771a83 1504is being dereferenced, but it amounts to the wrong type of reference.
6903afa2 1505The message indicates the type of reference that was expected. This
be771a83 1506usually indicates a syntax error in dereferencing the constant value.
779c5bc9
GS
1507See L<perlsub/"Constant Functions"> and L<constant>.
1508
4cee8e80
CS
1509=item Constant subroutine %s redefined
1510
aeb94125
FC
1511(W redefine)(S) You redefined a subroutine which had previously
1512been eligible for inlining. See L<perlsub/"Constant Functions">
1513for commentary and workarounds.
4cee8e80 1514
9607fc9c 1515=item Constant subroutine %s undefined
1516
be771a83
GS
1517(W misc) You undefined a subroutine which had previously been eligible
1518for inlining. See L<perlsub/"Constant Functions"> for commentary and
1519workarounds.
9607fc9c 1520
e7ea3e70
IZ
1521=item Copy method did not return a reference
1522
6903afa2 1523(F) The method which overloads "=" is buggy. See
13a2d996 1524L<overload/Copy Constructor>.
e7ea3e70 1525
4aaa4757
FC
1526=item &CORE::%s cannot be called directly
1527
1528(F) You tried to call a subroutine in the C<CORE::> namespace
8d605c0d 1529with C<&foo> syntax or through a reference. Some subroutines
4aaa4757
FC
1530in this package cannot yet be called that way, but must be
1531called as barewords. Something like this will work:
1532
1533 BEGIN { *shove = \&CORE::push; }
1534 shove @array, 1,2,3; # pushes on to @array
1535
6798c92b
GS
1536=item CORE::%s is not a keyword
1537
1538(F) The CORE:: namespace is reserved for Perl keywords.
1539
a0d0e21e
LW
1540=item corrupted regexp pointers
1541
1542(P) The regular expression engine got confused by what the regular
1543expression compiler gave it.
1544
1545=item corrupted regexp program
1546
be771a83
GS
1547(P) The regular expression engine got passed a regexp program without a
1548valid magic number.
a0d0e21e 1549
de42a5a9 1550=item Corrupt malloc ptr 0x%x at 0x%x
6df41af2
GS
1551
1552(P) The malloc package that comes with Perl had an internal failure.
1553
49704364
WL
1554=item Count after length/code in unpack
1555
1556(F) You had an unpack template indicating a counted-length string, but
1557you have also specified an explicit size for the string. See
1558L<perlfunc/pack>.
1559
a0d0e21e
LW
1560=item Deep recursion on subroutine "%s"
1561
be771a83
GS
1562(W recursion) This subroutine has called itself (directly or indirectly)
1563100 times more than it has returned. This probably indicates an
1564infinite recursion, unless you're writing strange benchmark programs, in
1565which case it indicates something else.
a0d0e21e 1566
aad1d01f
NC
1567This threshold can be changed from 100, by recompiling the F<perl> binary,
1568setting the C pre-processor macro C<PERL_SUB_DEPTH_WARN> to the desired value.
1569
f10b0346 1570=item defined(@array) is deprecated
69794302 1571
be771a83
GS
1572(D deprecated) defined() is not usually useful on arrays because it
1573checks for an undefined I<scalar> value. If you want to see if the
64977eb6 1574array is empty, just use C<if (@array) { # not empty }> for example.
69794302 1575
f10b0346 1576=item defined(%hash) is deprecated
69794302 1577
f0ec9725
KR
1578(D deprecated) C<defined()> is not usually right on hashes and has been
1579discouraged since 5.004.
1580
1581Although C<defined %hash> is false on a plain not-yet-used hash, it
1582becomes true in several non-obvious circumstances, including iterators,
1583weak references, stash names, even remaining true after C<undef %hash>.
1584These things make C<defined %hash> fairly useless in practice.
1585
1586If a check for non-empty is what you wanted then just put it in boolean
1587context (see L<perldata/Scalar values>):
16546e45
KR
1588
1589 if (%hash) {
1590 # not empty
1591 }
1592
f0ec9725
KR
1593If you had C<defined %Foo::Bar::QUUX> to check whether such a package
1594variable exists then that's never really been reliable, and isn't
1595a good way to enquire about the features of a package, or whether
1596it's loaded, etc.
1597
69794302 1598
bcb95744
FC
1599=item (?(DEFINE)....) does not allow branches in regex; marked by <-- HERE in m/%s/
1600
6903afa2 1601(F) You used something like C<(?(DEFINE)...|..)> which is illegal. The
bcb95744
FC
1602most likely cause of this error is that you left out a parenthesis inside
1603of the C<....> part.
1604
1605The <-- HERE shows in the regular expression about where the problem was
1606discovered.
1607
62658f4d
PM
1608=item %s defines neither package nor VERSION--version check failed
1609
1610(F) You said something like "use Module 42" but in the Module file
1611there are neither package declarations nor a C<$VERSION>.
1612
fc36a67e 1613=item Delimiter for here document is too long
1614
be771a83
GS
1615(F) In a here document construct like C<<<FOO>, the label C<FOO> is too
1616long for Perl to handle. You have to be seriously twisted to write code
1617that triggers this error.
fc36a67e 1618
4a68bf9d 1619=item Deprecated character in \N{...}; marked by <-- HERE in \N{%s<-- HERE %s
cb233ae3
KW
1620
1621(D deprecated) Just about anything is legal for the C<...> in C<\N{...}>.
5fca8acb
FC
1622But starting in 5.12, non-reasonable ones that don't look like names
1623are deprecated. A reasonable name begins with an alphabetic character
1624and continues with any combination of alphanumerics, dashes, spaces,
1625parentheses or colons.
cb233ae3 1626
6d3b25aa
RGS
1627=item Deprecated use of my() in false conditional
1628
fa816bf3
FC
1629(D deprecated) You used a declaration similar to C<my $x if 0>. There
1630has been a long-standing bug in Perl that causes a lexical variable
6d3b25aa 1631not to be cleared at scope exit when its declaration includes a false
6903afa2 1632conditional. Some people have exploited this bug to achieve a kind of
fa816bf3 1633static variable. Since we intend to fix this bug, we don't want people
6903afa2 1634relying on this behavior. You can achieve a similar static effect by
6d3b25aa 1635declaring the variable in a separate block outside the function, eg
36fb85f3 1636
6d3b25aa
RGS
1637 sub f { my $x if 0; return $x++ }
1638
1639becomes
1640
1641 { my $x; sub f { return $x++ } }
1642
fa816bf3
FC
1643Beginning with perl 5.9.4, you can also use C<state> variables to have
1644lexicals that are initialized only once (see L<feature>):
36fb85f3
RGS
1645
1646 sub f { state $x; return $x++ }
1647
500ab966
RGS
1648=item DESTROY created new reference to dead object '%s'
1649
1650(F) A DESTROY() method created a new reference to the object which is
6903afa2
FC
1651just being DESTROYed. Perl is confused, and prefers to abort rather
1652than to create a dangling reference.
500ab966 1653
3cdd684c
TP
1654=item Did not produce a valid header
1655
1656See Server error.
1657
6df41af2
GS
1658=item %s did not return a true value
1659
1660(F) A required (or used) file must return a true value to indicate that
1661it compiled correctly and ran its initialization code correctly. It's
1662traditional to end such a file with a "1;", though any true value would
1663do. See L<perlfunc/require>.
1664
cc507455 1665=item (Did you mean &%s instead?)
4633a7c4 1666
413ff9f6
FC
1667(W misc) You probably referred to an imported subroutine &FOO as $FOO or
1668some such.
4633a7c4 1669
cc507455 1670=item (Did you mean "local" instead of "our"?)
33633739 1671
be771a83
GS
1672(W misc) Remember that "our" does not localize the declared global
1673variable. You have declared it again in the same lexical scope, which
1674seems superfluous.
33633739 1675
cc507455 1676=item (Did you mean $ or @ instead of %?)
a0d0e21e 1677
be771a83
GS
1678(W) You probably said %hash{$key} when you meant $hash{$key} or
1679@hash{@keys}. On the other hand, maybe you just meant %hash and got
1680carried away.
748a9306 1681
7e1af8bc 1682=item Died
5f05dabc 1683
1684(F) You passed die() an empty string (the equivalent of C<die "">) or
075b00aa 1685you called it with no args and C<$@> was empty.
5f05dabc 1686
3cdd684c
TP
1687=item Document contains no data
1688
1689See Server error.
1690
62658f4d
PM
1691=item %s does not define %s::VERSION--version check failed
1692
1693(F) You said something like "use Module 42" but the Module did not
1694define a C<$VERSION.>
1695
49704364
WL
1696=item '/' does not take a repeat count
1697
1698(F) You cannot put a repeat count of any kind right after the '/' code.
1699See L<perlfunc/pack>.
1700
a0d0e21e
LW
1701=item Don't know how to handle magic of type '%s'
1702
1703(P) The internal handling of magical variables has been cursed.
1704
1705=item do_study: out of memory
1706
1707(P) This should have been caught by safemalloc() instead.
1708
6df41af2
GS
1709=item (Do you need to predeclare %s?)
1710
56da5a46
RGS
1711(S syntax) This is an educated guess made in conjunction with the message
1712"%s found where operator expected". It often means a subroutine or module
6df41af2
GS
1713name is being referenced that hasn't been declared yet. This may be
1714because of ordering problems in your file, or because of a missing
be771a83
GS
1715"sub", "package", "require", or "use" statement. If you're referencing
1716something that isn't defined yet, you don't actually have to define the
1717subroutine or package before the current location. You can use an empty
1718"sub foo;" or "package FOO;" to enter a "forward" declaration.
6df41af2 1719
ac206dc8
RGS
1720=item dump() better written as CORE::dump()
1721
1722(W misc) You used the obsolescent C<dump()> built-in function, without fully
1723qualifying it as C<CORE::dump()>. Maybe it's a typo. See L<perlfunc/dump>.
1724
84d78eb7
YO
1725=item dump is not supported
1726
1727(F) Your machine doesn't support dump/undump.
1728
a0d0e21e
LW
1729=item Duplicate free() ignored
1730
be771a83
GS
1731(S malloc) An internal routine called free() on something that had
1732already been freed.
a0d0e21e 1733
1109a392
MHM
1734=item Duplicate modifier '%c' after '%c' in %s
1735
1736(W) You have applied the same modifier more than once after a type
1737in a pack template. See L<perlfunc/pack>.
1738
4633a7c4
LW
1739=item elseif should be elsif
1740
fa816bf3
FC
1741(S syntax) There is no keyword "elseif" in Perl because Larry thinks
1742it's ugly. Your code will be interpreted as an attempt to call a method
1743named "elseif" for the class returned by the following block. This is
4633a7c4
LW
1744unlikely to be what you want.
1745
ab13f0c7
JH
1746=item Empty %s
1747
af6f566e 1748(F) C<\p> and C<\P> are used to introduce a named Unicode property, as
6903afa2 1749described in L<perlunicode> and L<perlre>. You used C<\p> or C<\P> in
af6f566e 1750a regular expression without specifying the property name.
ab13f0c7 1751
85ab1d1d 1752=item entering effective %s failed
5ff3f7a4 1753
85ab1d1d 1754(F) While under the C<use filetest> pragma, switching the real and
5ff3f7a4
GS
1755effective uids or gids failed.
1756
c038024b
RGS
1757=item %ENV is aliased to %s
1758
1759(F) You're running under taint mode, and the C<%ENV> variable has been
1760aliased to another hash, so it doesn't reflect anymore the state of the
6903afa2 1761program's environment. This is potentially insecure.
c038024b 1762
748a9306
LW
1763=item Error converting file specification %s
1764
5f05dabc 1765(F) An error peculiar to VMS. Because Perl may have to deal with file
748a9306 1766specifications in either VMS or Unix syntax, it converts them to a
be771a83
GS
1767single form when it must operate on them directly. Either you've passed
1768an invalid file specification to Perl, or you've found a case the
1769conversion routines don't handle. Drat.
748a9306 1770
e4d48cc9
GS
1771=item %s: Eval-group in insecure regular expression
1772
be771a83
GS
1773(F) Perl detected tainted data when trying to compile a regular
1774expression that contains the C<(?{ ... })> zero-width assertion, which
1775is unsafe. See L<perlre/(?{ code })>, and L<perlsec>.
e4d48cc9 1776
fc8f615e 1777=item %s: Eval-group not allowed at runtime, use re 'eval'
e4d48cc9 1778
be771a83
GS
1779(F) Perl tried to compile a regular expression containing the
1780C<(?{ ... })> zero-width assertion at run time, as it would when the
f11307f5
FC
1781pattern contains interpolated values. Since that is a security risk,
1782it is not allowed. If you insist, you may still do this by using the
1783C<re 'eval'> pragma or by explicitly building the pattern from an
1784interpolated string at run time and using that in an eval(). See
1785L<perlre/(?{ code })>.
e4d48cc9 1786
6df41af2
GS
1787=item %s: Eval-group not allowed, use re 'eval'
1788
be771a83
GS
1789(F) A regular expression contained the C<(?{ ... })> zero-width
1790assertion, but that construct is only allowed when the C<use re 'eval'>
1791pragma is in effect. See L<perlre/(?{ code })>.
6df41af2 1792
1a147d38
YO
1793=item EVAL without pos change exceeded limit in regex; marked by <-- HERE in m/%s/
1794
1795(F) You used a pattern that nested too many EVAL calls without consuming
6903afa2 1796any text. Restructure the pattern so that text is consumed.
1a147d38
YO
1797
1798The <-- HERE shows in the regular expression about where the problem was
1799discovered.
1800
fc36a67e 1801=item Excessively long <> operator
1802
1803(F) The contents of a <> operator may not exceed the maximum size of a
1804Perl identifier. If you're just trying to glob a long list of
1805filenames, try using the glob() operator, or put the filenames into a
1806variable and glob that.
1807
ed9aa3b7
SG
1808=item exec? I'm not *that* kind of operating system
1809
af8bb25a 1810(F) The C<exec> function is not implemented on some systems, e.g., Symbian
6903afa2 1811OS. See L<perlport>.
ed9aa3b7 1812
fe13d51d 1813=item Execution of %s aborted due to compilation errors.
a0d0e21e
LW
1814
1815(F) The final summary message when a Perl compilation fails.
1816
1817=item Exiting eval via %s
1818
be771a83
GS
1819(W exiting) You are exiting an eval by unconventional means, such as a
1820goto, or a loop control statement.
e476b1b5
GS
1821
1822=item Exiting format via %s
1823
9a2ff54b 1824(W exiting) You are exiting a format by unconventional means, such as a
be771a83 1825goto, or a loop control statement.
a0d0e21e 1826
0a753a76 1827=item Exiting pseudo-block via %s
1828
be771a83
GS
1829(W exiting) You are exiting a rather special block construct (like a
1830sort block or subroutine) by unconventional means, such as a goto, or a
1831loop control statement. See L<perlfunc/sort>.
0a753a76 1832
a0d0e21e
LW
1833=item Exiting subroutine via %s
1834
be771a83
GS
1835(W exiting) You are exiting a subroutine by unconventional means, such
1836as a goto, or a loop control statement.
a0d0e21e
LW
1837
1838=item Exiting substitution via %s
1839
be771a83
GS
1840(W exiting) You are exiting a substitution by unconventional means, such
1841as a return, a goto, or a loop control statement.
a0d0e21e 1842
7b8d334a
GS
1843=item Explicit blessing to '' (assuming package main)
1844
be771a83
GS
1845(W misc) You are blessing a reference to a zero length string. This has
1846the effect of blessing the reference into the package main. This is
1847usually not what you want. Consider providing a default target package,
1848e.g. bless($ref, $p || 'MyPackage');
7b8d334a 1849
6df41af2
GS
1850=item %s: Expression syntax
1851
be771a83
GS
1852(A) You've accidentally run your script through B<csh> instead of Perl.
1853Check the #! line, or manually feed your script into Perl yourself.
6df41af2
GS
1854
1855=item %s failed--call queue aborted
1856
3c10abe3
AG
1857(F) An untrapped exception was raised while executing a UNITCHECK,
1858CHECK, INIT, or END subroutine. Processing of the remainder of the
1859queue of such routines has been prematurely ended.
6df41af2 1860
7253e4e3 1861=item False [] range "%s" in regex; marked by <-- HERE in m/%s/
73b437c8 1862
be771a83 1863(W regexp) A character class range must start and end at a literal
7253e4e3
RK
1864character, not another character class like C<\d> or C<[:alpha:]>. The "-"
1865in your false range is interpreted as a literal "-". Consider quoting the
1866"-", "\-". The <-- HERE shows in the regular expression about where the
1867problem was discovered. See L<perlre>.
73b437c8 1868
1b1ee2ef 1869=item Fatal VMS error (status=%d) at %s, line %d
a0d0e21e 1870
be771a83
GS
1871(P) An error peculiar to VMS. Something untoward happened in a VMS
1872system service or RTL routine; Perl's exit status should provide more
1873details. The filename in "at %s" and the line number in "line %d" tell
1874you which section of the Perl source code is distressed.
a0d0e21e
LW
1875
1876=item fcntl is not implemented
1877
1878(F) Your machine apparently doesn't implement fcntl(). What is this, a
1879PDP-11 or something?
1880
22846ab4
AB
1881=item FETCHSIZE returned a negative value
1882
1883(F) A tied array claimed to have a negative number of elements, which
1884is not possible.
1885
f337b084
TH
1886=item Field too wide in 'u' format in pack
1887
1888(W pack) Each line in an uuencoded string start with a length indicator
6903afa2
FC
1889which can't encode values above 63. So there is no point in asking for
1890a line length bigger than that. Perl will behave as if you specified
5c96f6f7 1891C<u63> as the format.
f337b084 1892
af8c498a 1893=item Filehandle %s opened only for input
a0d0e21e 1894
6c8d78fb
HS
1895(W io) You tried to write on a read-only filehandle. If you intended
1896it to be a read-write filehandle, you needed to open it with "+<" or
1897"+>" or "+>>" instead of with "<" or nothing. If you intended only to
1898write the file, use ">" or ">>". See L<perlfunc/open>.
a0d0e21e 1899
af8c498a 1900=item Filehandle %s opened only for output
a0d0e21e 1901
6c8d78fb
HS
1902(W io) You tried to read from a filehandle opened only for writing, If
1903you intended it to be a read/write filehandle, you needed to open it
89a1bda8
FC
1904with "+<" or "+>" or "+>>" instead of with ">". If you intended only to
1905read from the file, use "<". See L<perlfunc/open>. Another possibility
1906is that you attempted to open filedescriptor 0 (also known as STDIN) for
1907output (maybe you closed STDIN earlier?).
97828cef
RGS
1908
1909=item Filehandle %s reopened as %s only for input
1910
1911(W io) You opened for reading a filehandle that got the same filehandle id
6903afa2 1912as STDOUT or STDERR. This occurred because you closed STDOUT or STDERR
97828cef
RGS
1913previously.
1914
1915=item Filehandle STDIN reopened as %s only for output
1916
1917(W io) You opened for writing a filehandle that got the same filehandle id
fa816bf3 1918as STDIN. This occurred because you closed STDIN previously.
a0d0e21e
LW
1919
1920=item Final $ should be \$ or $name
1921
1922(F) You must now decide whether the final $ in a string was meant to be
be771a83
GS
1923a literal dollar sign, or was meant to introduce a variable name that
1924happens to be missing. So you have to put either the backslash or the
1925name.
a0d0e21e 1926
56e90b21
GS
1927=item flock() on closed filehandle %s
1928
be771a83 1929(W closed) The filehandle you're attempting to flock() got itself closed
c289d2f7 1930some time before now. Check your control flow. flock() operates on
be771a83
GS
1931filehandles. Are you attempting to call flock() on a dirhandle by the
1932same name?
56e90b21 1933
6df41af2
GS
1934=item Format not terminated
1935
1936(F) A format must be terminated by a line with a solitary dot. Perl got
1937to the end of your file without finding such a line.
1938
a0d0e21e
LW
1939=item Format %s redefined
1940
e476b1b5 1941(W redefine) You redefined a format. To suppress this warning, say
a0d0e21e
LW
1942
1943 {
271595cc 1944 no warnings 'redefine';
a0d0e21e
LW
1945 eval "format NAME =...";
1946 }
1947
a0d0e21e
LW
1948=item Found = in conditional, should be ==
1949
e476b1b5 1950(W syntax) You said
a0d0e21e
LW
1951
1952 if ($foo = 123)
1953
1954when you meant
1955
1956 if ($foo == 123)
1957
1958(or something like that).
1959
6df41af2
GS
1960=item %s found where operator expected
1961
56da5a46
RGS
1962(S syntax) The Perl lexer knows whether to expect a term or an operator.
1963If it sees what it knows to be a term when it was expecting to see an
be771a83
GS
1964operator, it gives you this warning. Usually it indicates that an
1965operator or delimiter was omitted, such as a semicolon.
6df41af2 1966
a0d0e21e
LW
1967=item gdbm store returned %d, errno %d, key "%s"
1968
1969(S) A warning from the GDBM_File extension that a store failed.
1970
1971=item gethostent not implemented
1972
1973(F) Your C library apparently doesn't implement gethostent(), probably
1974because if it did, it'd feel morally obligated to return every hostname
1975on the Internet.
1976
69282e91 1977=item get%sname() on closed socket %s
a0d0e21e 1978
be771a83
GS
1979(W closed) You tried to get a socket or peer socket name on a closed
1980socket. Did you forget to check the return value of your socket() call?
a0d0e21e 1981
748a9306
LW
1982=item getpwnam returned invalid UIC %#o for user "%s"
1983
1984(S) A warning peculiar to VMS. The call to C<sys$getuai> underlying the
1985C<getpwnam> operator returned an invalid UIC.
1986
6df41af2
GS
1987=item getsockopt() on closed socket %s
1988
be771a83
GS
1989(W closed) You tried to get a socket option on a closed socket. Did you
1990forget to check the return value of your socket() call? See
6df41af2
GS
1991L<perlfunc/getsockopt>.
1992
1993=item Global symbol "%s" requires explicit package name
1994
a4edf47d 1995(F) You've said "use strict" or "use strict vars", which indicates
30c282f6 1996that all variables must either be lexically scoped (using "my" or "state"),
a4edf47d
GS
1997declared beforehand using "our", or explicitly qualified to say
1998which package the global variable is in (using "::").
6df41af2 1999
e476b1b5
GS
2000=item glob failed (%s)
2001
73c4e9dc
FC
2002(W glob) Something went wrong with the external program(s) used
2003for C<glob> and C<< <*.c> >>. Usually, this means that you supplied a C<glob>
2004pattern that caused the external program to fail and exit with a
be771a83 2005nonzero status. If the message indicates that the abnormal exit
73c4e9dc
FC
2006resulted in a coredump, this may also mean that your csh (C shell)
2007is broken. If so, you should change all of the csh-related variables
2008in config.sh: If you have tcsh, make the variables refer to it as
2009if it were csh (e.g. C<full_csh='/usr/bin/tcsh'>); otherwise, make them
2010all empty (except that C<d_csh> should be C<'undef'>) so that Perl will
be771a83 2011think csh is missing. In either case, after editing config.sh, run
75b44862 2012C<./Configure -S> and rebuild Perl.
e476b1b5 2013
a0d0e21e
LW
2014=item Glob not terminated
2015
2016(F) The lexer saw a left angle bracket in a place where it was expecting
be771a83
GS
2017a term, so it's looking for the corresponding right angle bracket, and
2018not finding it. Chances are you left some needed parentheses out
2019earlier in the line, and you really meant a "less than".
a0d0e21e 2020
bcd05b94 2021=item gmtime(%f) too large
8b56d6ff 2022
e9200be3 2023(W overflow) You called C<gmtime> with a number that was larger than
fc003d4b 2024it can reliably handle and C<gmtime> probably returned the wrong
6903afa2 2025date. This warning is also triggered with NaN (the special
fc003d4b
MS
2026not-a-number value).
2027
bcd05b94 2028=item gmtime(%f) too small
fc003d4b 2029
e9200be3 2030(W overflow) You called C<gmtime> with a number that was smaller than
e7a1a147 2031it can reliably handle and C<gmtime> probably returned the wrong date.
8b56d6ff 2032
6df41af2 2033=item Got an error from DosAllocMem
a0d0e21e 2034
6df41af2
GS
2035(P) An error peculiar to OS/2. Most probably you're using an obsolete
2036version of Perl, and this should not happen anyway.
a0d0e21e
LW
2037
2038=item goto must have label
2039
2040(F) Unlike with "next" or "last", you're not allowed to goto an
2041unspecified destination. See L<perlfunc/goto>.
2042
49704364 2043=item ()-group starts with a count
18529408 2044
bca4a986
FC
2045(F) A ()-group started with a count. A count is supposed to follow
2046something: a template character or a ()-group. See L<perlfunc/pack>.
18529408 2047
fe13d51d 2048=item %s had compilation errors.
6df41af2
GS
2049
2050(F) The final summary message when a C<perl -c> fails.
2051
a0d0e21e
LW
2052=item Had to create %s unexpectedly
2053
be771a83
GS
2054(S internal) A routine asked for a symbol from a symbol table that ought
2055to have existed already, but for some reason it didn't, and had to be
2056created on an emergency basis to prevent a core dump.
a0d0e21e
LW
2057
2058=item Hash %%s missing the % in argument %d of %s()
2059
be771a83
GS
2060(D deprecated) Really old Perl let you omit the % on hash names in some
2061spots. This is now heavily deprecated.
a0d0e21e 2062
6df41af2
GS
2063=item %s has too many errors
2064
2065(F) The parser has given up trying to parse the program after 10 errors.
2066Further error messages would likely be uninformative.
2067
e6897b1a
KW
2068=item Having no space between pattern and following word is deprecated
2069
2070(D syntax)
2071
6903afa2
FC
2072You had a word that isn't a regex modifier immediately following
2073a pattern without an intervening space. If you are trying to use
2074the C</le> flags on a substitution, use C</el> instead. Otherwise, add
2075white space between the pattern and following word to eliminate
2076the warning. As an example of the latter, the two constructs:
2077
e6897b1a
KW
2078
2079 $a =~ m/$foo/sand $bar
2080 $a =~ m/$foo/s and $bar
2081
6903afa2
FC
2082both currently mean the same thing, but it is planned to disallow
2083the first form in Perl 5.18. And,
e6897b1a
KW
2084
2085 $a =~ m/$foo/and $bar
2086
2087will be disallowed too.
2088
252aa082
JH
2089=item Hexadecimal number > 0xffffffff non-portable
2090
e476b1b5 2091(W portable) The hexadecimal number you specified is larger than 2**32-1
9e24b6e2
JH
2092(4294967295) and therefore non-portable between systems. See
2093L<perlport> for more on portability concerns.
252aa082 2094
8903cb82 2095=item Identifier too long
2096
2097(F) Perl limits identifiers (names for variables, functions, etc.) to
fc36a67e 2098about 250 characters for simple names, and somewhat more for compound
be771a83
GS
2099names (like C<$A::B>). You've exceeded Perl's limits. Future versions
2100of Perl are likely to eliminate these arbitrary limitations.
8903cb82 2101
c3c41406 2102=item Ignoring zero length \N{} in character class
fc8cd66c 2103
20561843 2104(W) Named Unicode character escapes C<(\N{...})> may return a zero-length
6903afa2
FC
2105sequence. When such an escape is used in a character class its
2106behaviour is not well defined. Check that the correct escape has
fc8cd66c
YO
2107been used, and the correct charname handler is in scope.
2108
6df41af2 2109=item Illegal binary digit %s
f675dbe5 2110
6df41af2 2111(F) You used a digit other than 0 or 1 in a binary number.
f675dbe5 2112
6df41af2 2113=item Illegal binary digit %s ignored
a0d0e21e 2114
be771a83
GS
2115(W digit) You may have tried to use a digit other than 0 or 1 in a
2116binary number. Interpretation of the binary number stopped before the
2117offending digit.
a0d0e21e 2118
6597eb22
FC
2119=item Illegal character after '_' in prototype for %s : %s
2120
2121(W illegalproto) An illegal character was found in a prototype declaration.
2122Legal characters in prototypes are $, @, %, *, ;, [, ], &, \, and +.
2123
78d0fecf 2124=item Illegal character \%o (carriage return)
4fdae800 2125
d5898338 2126(F) Perl normally treats carriage returns in the program text as it
be771a83
GS
2127would any other whitespace, which means you should never see this error
2128when Perl was built using standard options. For some reason, your
2129version of Perl appears to have been built without this support. Talk
2130to your Perl administrator.
4fdae800 2131
d37a9538
ST
2132=item Illegal character in prototype for %s : %s
2133
197afce1 2134(W illegalproto) An illegal character was found in a prototype declaration.
2e9cc7ef 2135Legal characters in prototypes are $, @, %, *, ;, [, ], &, \, and +.
d37a9538 2136
904d85c5
RGS
2137=item Illegal declaration of anonymous subroutine
2138
2139(F) When using the C<sub> keyword to construct an anonymous subroutine,
6903afa2 2140you must always specify a block of code. See L<perlsub>.
904d85c5 2141
8e742a20
MHM
2142=item Illegal declaration of subroutine %s
2143
6903afa2 2144(F) A subroutine was not declared correctly. See L<perlsub>.
8e742a20 2145
a0d0e21e
LW
2146=item Illegal division by zero
2147
be771a83
GS
2148(F) You tried to divide a number by 0. Either something was wrong in
2149your logic, or you need to put a conditional in to guard against
2150meaningless input.
a0d0e21e 2151
6df41af2
GS
2152=item Illegal hexadecimal digit %s ignored
2153
be771a83
GS
2154(W digit) You may have tried to use a character other than 0 - 9 or
2155A - F, a - f in a hexadecimal number. Interpretation of the hexadecimal
2156number stopped before the illegal character.
6df41af2 2157
a0d0e21e
LW
2158=item Illegal modulus zero
2159
be771a83
GS
2160(F) You tried to divide a number by 0 to get the remainder. Most
2161numbers don't take to this kindly.
a0d0e21e 2162
6df41af2 2163=item Illegal number of bits in vec
399388f4 2164
6df41af2
GS
2165(F) The number of bits in vec() (the third argument) must be a power of
2166two from 1 to 32 (or 64, if your platform supports that).
399388f4
GS
2167
2168=item Illegal octal digit %s
a0d0e21e 2169
d1be9408 2170(F) You used an 8 or 9 in an octal number.
a0d0e21e 2171
399388f4 2172=item Illegal octal digit %s ignored
748a9306 2173
d1be9408 2174(W digit) You may have tried to use an 8 or 9 in an octal number.
75b44862 2175Interpretation of the octal number stopped before the 8 or 9.
748a9306 2176
fe13d51d 2177=item Illegal switch in PERL5OPT: -%c
6ff81951 2178
6df41af2 2179(X) The PERL5OPT environment variable may only be used to set the
646ca9b2 2180following switches: B<-[CDIMUdmtw]>.
6ff81951 2181
6df41af2 2182=item Ill-formed CRTL environ value "%s"
81e118e0 2183
75b44862 2184(W internal) A warning peculiar to VMS. Perl tried to read the CRTL's
be771a83
GS
2185internal environ array, and encountered an element without the C<=>
2186delimiter used to separate keys from values. The element is ignored.
09bef843 2187
6df41af2 2188=item Ill-formed message in prime_env_iter: |%s|
54310121 2189
be771a83
GS
2190(W internal) A warning peculiar to VMS. Perl tried to read a logical
2191name or CLI symbol definition when preparing to iterate over %ENV, and
2192didn't see the expected delimiter between key and value, so the line was
2193ignored.
54310121 2194
6df41af2 2195=item (in cleanup) %s
9607fc9c 2196
be771a83
GS
2197(W misc) This prefix usually indicates that a DESTROY() method raised
2198the indicated exception. Since destructors are usually called by the
2199system at arbitrary points during execution, and often a vast number of
2200times, the warning is issued only once for any number of failures that
2201would otherwise result in the same message being repeated.
6df41af2 2202
be771a83
GS
2203Failure of user callbacks dispatched using the C<G_KEEPERR> flag could
2204also result in this warning. See L<perlcall/G_KEEPERR>.
9607fc9c 2205
2c7d6b9c
RGS
2206=item Inconsistent hierarchy during C3 merge of class '%s': merging failed on parent '%s'
2207
2208(F) The method resolution order (MRO) of the given class is not
2209C3-consistent, and you have enabled the C3 MRO for this class. See the C3
2210documentation in L<mro> for more information.
2211
979699d9
JH
2212=item In EBCDIC the v-string components cannot exceed 2147483647
2213
2214(F) An error peculiar to EBCDIC. Internally, v-strings are stored as
2215Unicode code points, and encoded in EBCDIC as UTF-EBCDIC. The UTF-EBCDIC
2216encoding is limited to code points no larger than 2147483647 (0x7FFFFFFF).
2217
1a147d38
YO
2218=item Infinite recursion in regex; marked by <-- HERE in m/%s/
2219
2220(F) You used a pattern that references itself without consuming any input
6903afa2 2221text. You should check the pattern to ensure that recursive patterns
1a147d38
YO
2222either consume text or fail.
2223
2224The <-- HERE shows in the regular expression about where the problem was
2225discovered.
2226
6dbe9451
NC
2227=item Initialization of state variables in list context currently forbidden
2228
6903afa2
FC
2229(F) Currently the implementation of "state" only permits the
2230initialization of scalar variables in scalar context. Re-write
2231C<state ($a) = 42> as C<state $a = 42> to change from list to scalar
2232context. Constructions such as C<state (@a) = foo()> will be
2233supported in a future perl release.
6dbe9451 2234
a0d0e21e
LW
2235=item Insecure dependency in %s
2236
8b1a09fc 2237(F) You tried to do something that the tainting mechanism didn't like.
be771a83
GS
2238The tainting mechanism is turned on when you're running setuid or
2239setgid, or when you specify B<-T> to turn it on explicitly. The
2240tainting mechanism labels all data that's derived directly or indirectly
2241from the user, who is considered to be unworthy of your trust. If any
2242such data is used in a "dangerous" operation, you get this error. See
2243L<perlsec> for more information.
a0d0e21e
LW
2244
2245=item Insecure directory in %s
2246
be771a83
GS
2247(F) You can't use system(), exec(), or a piped open in a setuid or
2248setgid script if C<$ENV{PATH}> contains a directory that is writable by
df98f984
RGS
2249the world. Also, the PATH must not contain any relative directory.
2250See L<perlsec>.
a0d0e21e 2251
62f468fc 2252=item Insecure $ENV{%s} while running %s
a0d0e21e
LW
2253
2254(F) You can't use system(), exec(), or a piped open in a setuid or
62f468fc 2255setgid script if any of C<$ENV{PATH}>, C<$ENV{IFS}>, C<$ENV{CDPATH}>,
332d5f78
SR
2256C<$ENV{ENV}>, C<$ENV{BASH_ENV}> or C<$ENV{TERM}> are derived from data
2257supplied (or potentially supplied) by the user. The script must set
2258the path to a known value, using trustworthy data. See L<perlsec>.
a0d0e21e 2259
0e9be77f
DM
2260=item Insecure user-defined property %s
2261
2262(F) Perl detected tainted data when trying to compile a regular
2263expression that contains a call to a user-defined character property
2264function, i.e. C<\p{IsFoo}> or C<\p{InFoo}>.
2265See L<perlunicode/User-Defined Character Properties> and L<perlsec>.
2266
b9ef414d
FC
2267=item Integer overflow in format string for %s
2268
2269(F) The indexes and widths specified in the format string of C<printf()>
2270or C<sprintf()> are too large. The numbers must not overflow the size of
2271integers for your architecture.
2272
a7ae9550
GS
2273=item Integer overflow in %s number
2274
75b44862 2275(W overflow) The hexadecimal, octal or binary number you have specified
be771a83
GS
2276either as a literal or as an argument to hex() or oct() is too big for
2277your architecture, and has been converted to a floating point number.
2278On a 32-bit architecture the largest hexadecimal, octal or binary number
9e24b6e2
JH
2279representable without overflow is 0xFFFFFFFF, 037777777777, or
22800b11111111111111111111111111111111 respectively. Note that Perl
2281transparently promotes all numbers to a floating point representation
2282internally--subject to loss of precision errors in subsequent
2283operations.
bbce6d69 2284
46314c13
JP
2285=item Integer overflow in version
2286
2287(F) Some portion of a version initialization is too large for the
2288size of integers for your architecture. This is not a warning
2289because there is no rational reason for a version to try and use a
2290element larger than typically 2**32. This is usually caused by
2291trying to use some odd mathematical operation as a version, like
2292100/9.
2293
7253e4e3 2294=item Internal disaster in regex; marked by <-- HERE in m/%s/
6df41af2
GS
2295
2296(P) Something went badly wrong in the regular expression parser.
7253e4e3 2297The <-- HERE shows in the regular expression about where the problem was
b45f050a
JF
2298discovered.
2299
748a9306
LW
2300=item Internal inconsistency in tracking vforks
2301
be771a83
GS
2302(S) A warning peculiar to VMS. Perl keeps track of the number of times
2303you've called C<fork> and C<exec>, to determine whether the current call
2304to C<exec> should affect the current script or a subprocess (see
2305L<perlvms/"exec LIST">). Somehow, this count has become scrambled, so
2306Perl is making a guess and treating this C<exec> as a request to
2307terminate the Perl script and execute the specified command.
748a9306 2308
7253e4e3 2309=item Internal urp in regex; marked by <-- HERE in m/%s/
b45f050a 2310
fa816bf3 2311(P) Something went badly awry in the regular expression parser. The
7253e4e3
RK
2312<-- HERE shows in the regular expression about where the problem was
2313discovered.
a0d0e21e 2314
6df41af2
GS
2315=item %s (...) interpreted as function
2316
75b44862 2317(W syntax) You've run afoul of the rule that says that any list operator
be771a83 2318followed by parentheses turns into a function, with all the list
64977eb6 2319operators arguments found inside the parentheses. See
13a2d996 2320L<perlop/Terms and List Operators (Leftward)>.
6df41af2 2321
09bef843
SB
2322=item Invalid %s attribute: %s
2323
a4a4c9e2 2324(F) The indicated attribute for a subroutine or variable was not recognized
09bef843
SB
2325by Perl or by a user-supplied handler. See L<attributes>.
2326
2327=item Invalid %s attributes: %s
2328
a4a4c9e2 2329(F) The indicated attributes for a subroutine or variable were not
be771a83 2330recognized by Perl or by a user-supplied handler. See L<attributes>.
09bef843 2331
c635e13b 2332=item Invalid conversion in %s: "%s"
2333
be771a83
GS
2334(W printf) Perl does not understand the given format conversion. See
2335L<perlfunc/sprintf>.
c635e13b 2336
9e08bc66
TS
2337=item Invalid escape in the specified encoding in regex; marked by <-- HERE in m/%s/
2338
2339(W regexp) The numeric escape (for example C<\xHH>) of value < 256
2340didn't correspond to a single character through the conversion
2341from the encoding specified by the encoding pragma.
2342The escape was replaced with REPLACEMENT CHARACTER (U+FFFD) instead.
2343The <-- HERE shows in the regular expression about where the
2344escape was discovered.
2345
8149aa9f
FC
2346=item Invalid hexadecimal number in \N{U+...}
2347
2348(F) The character constant represented by C<...> is not a valid hexadecimal
74f8e9e3
FC
2349number. Either it is empty, or you tried to use a character other than
23500 - 9 or A - F, a - f in a hexadecimal number.
8149aa9f 2351
2c7d6b9c
RGS
2352=item Invalid mro name: '%s'
2353
162a3e34
FC
2354(F) You tried to C<mro::set_mro("classname", "foo")> or C<use mro 'foo'>,
2355where C<foo> is not a valid method resolution order (MRO). Currently,
2356the only valid ones supported are C<dfs> and C<c3>, unless you have loaded
2357a module that is a MRO plugin. See L<mro> and L<perlmroapi>.
2c7d6b9c 2358
7253e4e3 2359=item Invalid [] range "%s" in regex; marked by <-- HERE in m/%s/
6df41af2
GS
2360
2361(F) The range specified in a character class had a minimum character
7253e4e3
RK
2362greater than the maximum character. One possibility is that you forgot the
2363C<{}> from your ending C<\x{}> - C<\x> without the curly braces can go only
2364up to C<ff>. The <-- HERE shows in the regular expression about where the
2365problem was discovered. See L<perlre>.
6df41af2 2366
d1573ac7 2367=item Invalid range "%s" in transliteration operator
c2e66d9e
GS
2368
2369(F) The range specified in the tr/// or y/// operator had a minimum
2370character greater than the maximum character. See L<perlop>.
2371
09bef843
SB
2372=item Invalid separator character %s in attribute list
2373
0120eecf 2374(F) Something other than a colon or whitespace was seen between the
be771a83
GS
2375elements of an attribute list. If the previous attribute had a
2376parenthesised parameter list, perhaps that list was terminated too soon.
2377See L<attributes>.
09bef843 2378
b4581f09
JH
2379=item Invalid separator character %s in PerlIO layer specification %s
2380
2bfc5f71
FC
2381(W layer) When pushing layers onto the Perl I/O system, something other
2382than a colon or whitespace was seen between the elements of a layer list.
b4581f09
JH
2383If the previous attribute had a parenthesised parameter list, perhaps that
2384list was terminated too soon.
2385
2c86d456
DG
2386=item Invalid strict version format (%s)
2387
fa816bf3 2388(F) A version number did not meet the "strict" criteria for versions.
2c86d456
DG
2389A "strict" version number is a positive decimal number (integer or
2390decimal-fraction) without exponentiation or else a dotted-decimal
2391v-string with a leading 'v' character and at least three components.
a6485a24 2392The parenthesized text indicates which criteria were not met.
2c86d456
DG
2393See the L<version> module for more details on allowed version formats.
2394
49704364 2395=item Invalid type '%s' in %s
96e4d5b1 2396
49704364
WL
2397(F) The given character is not a valid pack or unpack type.
2398See L<perlfunc/pack>.
6728c851 2399
49704364 2400(W) The given character is not a valid pack or unpack type but used to be
75b44862 2401silently ignored.
96e4d5b1 2402
2c86d456
DG
2403=item Invalid version format (%s)
2404
fa816bf3 2405(F) A version number did not meet the "lax" criteria for versions.
2c86d456
DG
2406A "lax" version number is a positive decimal number (integer or
2407decimal-fraction) without exponentiation or else a dotted-decimal
fa816bf3
FC
2408v-string. If the v-string has fewer than three components, it
2409must have a leading 'v' character. Otherwise, the leading 'v' is
2410optional. Both decimal and dotted-decimal versions may have a
2411trailing "alpha" component separated by an underscore character
2412after a fractional or dotted-decimal component. The parenthesized
2413text indicates which criteria were not met. See the L<version> module
2414for more details on allowed version formats.
46314c13 2415
798ae1b7
DG
2416=item Invalid version object
2417
fa816bf3
FC
2418(F) The internal structure of the version object was invalid.
2419Perhaps the internals were modified directly in some way or
2420an arbitrary reference was blessed into the "version" class.
798ae1b7 2421
a0d0e21e
LW
2422=item ioctl is not implemented
2423
2424(F) Your machine apparently doesn't implement ioctl(), which is pretty
2425strange for a machine that supports C.
2426
c289d2f7
JH
2427=item ioctl() on unopened %s
2428
2429(W unopened) You tried ioctl() on a filehandle that was never opened.
34b6fd5e 2430Check your control flow and number of arguments.
c289d2f7 2431
fe13d51d 2432=item IO layers (like '%s') unavailable
363c40c4
SB
2433
2434(F) Your Perl has not been configured to have PerlIO, and therefore
34b6fd5e 2435you cannot use IO layers. To have PerlIO, Perl must be configured
363c40c4
SB
2436with 'useperlio'.
2437
80cbd5ad
JH
2438=item IO::Socket::atmark not implemented on this architecture
2439
2440(F) Your machine doesn't implement the sockatmark() functionality,
34b6fd5e 2441neither as a system call nor an ioctl call (SIOCATMARK).
80cbd5ad 2442
b4581f09
JH
2443=item $* is no longer supported
2444
a58ac25e 2445(D deprecated, syntax) The special variable C<$*>, deprecated in older
6903afa2 2446perls, has been removed as of 5.9.0 and is no longer supported. In
a58ac25e
FC
2447previous versions of perl the use of C<$*> enabled or disabled multi-line
2448matching within a string.
4fd19576
B
2449
2450Instead of using C<$*> you should use the C</m> (and maybe C</s>) regexp
6903afa2
FC
2451modifiers. You can enable C</m> for a lexical scope (even a whole file)
2452with C<use re '/m'>. (In older versions: when C<$*> was set to a true value
570dedd4 2453then all regular expressions behaved as if they were written using C</m>.)
b4581f09 2454
8ae1fe26
RGS
2455=item $# is no longer supported
2456
a58ac25e 2457(D deprecated, syntax) The special variable C<$#>, deprecated in older
6903afa2 2458perls, has been removed as of 5.9.3 and is no longer supported. You
a58ac25e 2459should use the printf/sprintf functions instead.
8ae1fe26 2460
ccf3535a 2461=item '%s' is not a code reference
6ad11d81 2462
6903afa2
FC
2463(W overload) The second (fourth, sixth, ...) argument of
2464overload::constant needs to be a code reference. Either
2465an anonymous subroutine, or a reference to a subroutine.
6ad11d81 2466
ccf3535a 2467=item '%s' is not an overloadable type
6ad11d81 2468
04a80ee0
RGS
2469(W overload) You tried to overload a constant type the overload package is
2470unaware of.
6ad11d81 2471
a0d0e21e
LW
2472=item junk on end of regexp
2473
2474(P) The regular expression parser is confused.
2475
2476=item Label not found for "last %s"
2477
be771a83
GS
2478(F) You named a loop to break out of, but you're not currently in a loop
2479of that name, not even if you count where you were called from. See
2480L<perlfunc/last>.
a0d0e21e
LW
2481
2482=item Label not found for "next %s"
2483
2484(F) You named a loop to continue, but you're not currently in a loop of
2485that name, not even if you count where you were called from. See
2486L<perlfunc/last>.
2487
2488=item Label not found for "redo %s"
2489
2490(F) You named a loop to restart, but you're not currently in a loop of
2491that name, not even if you count where you were called from. See
2492L<perlfunc/last>.
2493
85ab1d1d 2494=item leaving effective %s failed
5ff3f7a4 2495
85ab1d1d 2496(F) While under the C<use filetest> pragma, switching the real and
5ff3f7a4
GS
2497effective uids or gids failed.
2498
49704364
WL
2499=item length/code after end of string in unpack
2500
d7f8936a 2501(F) While unpacking, the string buffer was already used up when an unpack
6903afa2
FC
2502length/code combination tried to obtain more data. This results in
2503an undefined value for the length. See L<perlfunc/pack>.
49704364 2504
e508c8a4
MH
2505=item length() used on %s
2506
0d46a4e7
FC
2507(W syntax) You used length() on either an array or a hash when you
2508probably wanted a count of the items.
e508c8a4
MH
2509
2510Array size can be obtained by doing:
2511
2512 scalar(@array);
2513
2514The number of items in a hash can be obtained by doing:
2515
2516 scalar(keys %hash);
2517
f0e67a1d
Z
2518=item Lexing code attempted to stuff non-Latin-1 character into Latin-1 input
2519
2520(F) An extension is attempting to insert text into the current parse
6903afa2
FC
2521(using L<lex_stuff_pvn|perlapi/lex_stuff_pvn> or similar), but tried to insert a character that
2522couldn't be part of the current input. This is an inherent pitfall
2523of the stuffing mechanism, and one of the reasons to avoid it. Where
2524it is necessary to stuff, stuffing only plain ASCII is recommended.
f0e67a1d
Z
2525
2526=item Lexing code internal error (%s)
2527
2528(F) Lexing code supplied by an extension violated the lexer's API in a
2529detectable way.
2530
69282e91 2531=item listen() on closed socket %s
a0d0e21e 2532
be771a83
GS
2533(W closed) You tried to do a listen on a closed socket. Did you forget
2534to check the return value of your socket() call? See
2535L<perlfunc/listen>.
a0d0e21e 2536
bcd05b94 2537=item localtime(%f) too large
8b56d6ff 2538
e9200be3 2539(W overflow) You called C<localtime> with a number that was larger
fc003d4b 2540than it can reliably handle and C<localtime> probably returned the
6903afa2 2541wrong date. This warning is also triggered with NaN (the special
fc003d4b
MS
2542not-a-number value).
2543
bcd05b94 2544=item localtime(%f) too small
fc003d4b 2545
e9200be3 2546(W overflow) You called C<localtime> with a number that was smaller
fc003d4b 2547than it can reliably handle and C<localtime> probably returned the
e7a1a147 2548wrong date.
8b56d6ff 2549
58e23c8d 2550=item Lookbehind longer than %d not implemented in regex m/%s/
b45f050a
JF
2551
2552(F) There is currently a limit on the length of string which lookbehind can
6903afa2 2553handle. This restriction may be eased in a future release.
2e50fd82 2554
b88df990
NC
2555=item Lost precision when %s %f by 1
2556
2557(W) The value you attempted to increment or decrement by one is too large
2558for the underlying floating point representation to store accurately,
6903afa2 2559hence the target of C<++> or C<--> is unchanged. Perl issues this warning
b88df990
NC
2560because it has already switched from integers to floating point when values
2561are too large for integers, and now even floating point is insufficient.
2562You may wish to switch to using L<Math::BigInt> explicitly.
2563
2f7da168
RK
2564=item lstat() on filehandle %s
2565
2566(W io) You tried to do an lstat on a filehandle. What did you mean
2567by that? lstat() makes sense only on filenames. (Perl did a fstat()
2568instead on the filehandle.)
2569
bb3abb05
FC
2570=item lvalue attribute cannot be removed after the subroutine has been defined
2571
2572(W misc) The lvalue attribute on a Perl subroutine cannot be turned off
2573once the subroutine is defined.
2574
885ef6f5
GG
2575=item lvalue attribute ignored after the subroutine has been defined
2576
bb3abb05
FC
2577(W misc) Making a Perl subroutine an lvalue subroutine after it has been
2578defined, whether by declaring the subroutine with an lvalue attribute
2579or by using L<attributes.pm|attributes>, is not possible. To make the subroutine an
2580lvalue subroutine, add the lvalue attribute to the definition, or put
2581the declaration before the definition.
885ef6f5 2582
2db62bbc 2583=item Malformed integer in [] in pack
49704364 2584
2db62bbc 2585(F) Between the brackets enclosing a numeric repeat count only digits
49704364
WL
2586are permitted. See L<perlfunc/pack>.
2587
2588=item Malformed integer in [] in unpack
2589
2db62bbc 2590(F) Between the brackets enclosing a numeric repeat count only digits
49704364
WL
2591are permitted. See L<perlfunc/pack>.
2592
6df41af2
GS
2593=item Malformed PERLLIB_PREFIX
2594
2595(F) An error peculiar to OS/2. PERLLIB_PREFIX should be of the form
2596
2597 prefix1;prefix2
2598
2599or
6df41af2
GS
2600 prefix1 prefix2
2601
be771a83
GS
2602with nonempty prefix1 and prefix2. If C<prefix1> is indeed a prefix of
2603a builtin library search path, prefix2 is substituted. The error may
2604appear if components are not found, or are too long. See
fecfaeb8 2605"PERLLIB_PREFIX" in L<perlos2>.
6df41af2 2606
2f758a16
ST
2607=item Malformed prototype for %s: %s
2608
d37a9538
ST
2609(F) You tried to use a function with a malformed prototype. The
2610syntax of function prototypes is given a brief compile-time check for
2611obvious errors like invalid characters. A more rigorous check is run
2612when the function is called.
2f758a16 2613
ba210ebe
JH
2614=item Malformed UTF-8 character (%s)
2615
2575c402
JW
2616(S utf8) (F) Perl detected a string that didn't comply with UTF-8
2617encoding rules, even though it had the UTF8 flag on.
ba210ebe 2618
2575c402
JW
2619One possible cause is that you set the UTF8 flag yourself for data that
2620you thought to be in UTF-8 but it wasn't (it was for example legacy
6903afa2 26218-bit data). To guard against this, you can use Encode::decode_utf8.
2575c402
JW
2622
2623If you use the C<:encoding(UTF-8)> PerlIO layer for input, invalid byte
2624sequences are handled gracefully, but if you use C<:utf8>, the flag is
2625set without validating the data, possibly resulting in this error
2626message.
2627
2628See also L<Encode/"Handling Malformed Data">.
901b21bf 2629
ff3f963a
KW
2630=item Malformed UTF-8 returned by \N
2631
2632(F) The charnames handler returned malformed UTF-8.
2633
4a5d3a93
FC
2634=item Malformed UTF-8 string in '%c' format in unpack
2635
2636(F) You tried to unpack something that didn't comply with UTF-8 encoding
2637rules and perl was unable to guess how to make more progress.
2638
f337b084
TH
2639=item Malformed UTF-8 string in pack
2640
2641(F) You tried to pack something that didn't comply with UTF-8 encoding
2642rules and perl was unable to guess how to make more progress.
2643
2644=item Malformed UTF-8 string in unpack
2645
2646(F) You tried to unpack something that didn't comply with UTF-8 encoding
2647rules and perl was unable to guess how to make more progress.
2648
4a5d3a93 2649=item Malformed UTF-16 surrogate
f337b084 2650
4a5d3a93
FC
2651(F) Perl thought it was reading UTF-16 encoded character data but while
2652doing it Perl met a malformed Unicode surrogate.
2653
2654=item %s matches null string many times in regex; marked by <-- HERE in m/%s/
2655
2656(W regexp) The pattern you've specified would be an infinite loop if the
2657regular expression engine didn't specifically check for that. The <-- HERE
2658shows in the regular expression about where the problem was discovered.
2659See L<perlre>.
f337b084 2660
de42a5a9 2661=item Maximal count of pending signals (%u) exceeded
2563cec5 2662
6903afa2 2663(F) Perl aborted due to too high a number of signals pending. This
2563cec5
IZ
2664usually indicates that your operating system tried to deliver signals
2665too fast (with a very high priority), starving the perl process from
2666resources it would need to reach a point where it can process signals
6903afa2 2667safely. (See L<perlipc/"Deferred Signals (Safe Signals)">.)
2563cec5 2668
25f58aea
PN
2669=item "%s" may clash with future reserved word
2670
2671(W) This warning may be due to running a perl5 script through a perl4
2672interpreter, especially if the word that is being warned about is
2673"use" or "my".
2674
49704364 2675=item % may not be used in pack
6df41af2
GS
2676
2677(F) You can't pack a string by supplying a checksum, because the
be771a83
GS
2678checksumming process loses information, and you can't go the other way.
2679See L<perlfunc/unpack>.
6df41af2 2680
a0d0e21e
LW
2681=item Method for operation %s not found in package %s during blessing
2682
2683(F) An attempt was made to specify an entry in an overloading table that
e7ea3e70 2684doesn't resolve to a valid subroutine. See L<overload>.
a0d0e21e 2685
3cdd684c
TP
2686=item Method %s not permitted
2687
2688See Server error.
2689
a0d0e21e
LW
2690=item Might be a runaway multi-line %s string starting on line %d
2691
2692(S) An advisory indicating that the previous error may have been caused
2693by a missing delimiter on a string or pattern, because it eventually
2694ended earlier on the current line.
2695
2696=item Misplaced _ in number
2697
d4ced10d
JH
2698(W syntax) An underscore (underbar) in a numeric constant did not
2699separate two digits.
a0d0e21e 2700
7baa4690
HS
2701=item Missing argument in %s
2702
2703(W uninitialized) A printf-type format required more arguments than were
2704supplied.
2705
9e81e6a1
RGS
2706=item Missing argument to -%c
2707
2708(F) The argument to the indicated command line switch must follow
2709immediately after the switch, without intervening spaces.
2710
ff3f963a 2711=item Missing braces on \N{}
423cee85 2712
4a2d328f 2713(F) Wrong syntax of character name literal C<\N{charname}> within
532cb70d
FC
2714double-quotish context. This can also happen when there is a space
2715(or comment) between the C<\N> and the C<{> in a regex with the C</x> modifier.
2716This modifier does not change the requirement that the brace immediately
2717follow the C<\N>.
423cee85 2718
f0a2b745
KW
2719=item Missing braces on \o{}
2720
2721(F) A C<\o> must be followed immediately by a C<{> in double-quotish context.
2722
a0d0e21e
LW
2723=item Missing comma after first argument to %s function
2724
2725(F) While certain functions allow you to specify a filehandle or an
2726"indirect object" before the argument list, this ain't one of them.
2727
06eaf0bc
GS
2728=item Missing command in piped open
2729
be771a83
GS
2730(W pipe) You used the C<open(FH, "| command")> or
2731C<open(FH, "command |")> construction, but the command was missing or
2732blank.
06eaf0bc 2733
961ce445
RGS
2734=item Missing control char name in \c
2735
2736(F) A double-quoted string ended with "\c", without the required control
2737character name.
2738
6df41af2
GS
2739=item Missing name in "my sub"
2740
be771a83
GS
2741(F) The reserved syntax for lexically scoped subroutines requires that
2742they have a name with which they can be found.
6df41af2
GS
2743
2744=item Missing $ on loop variable
2745
be771a83
GS
2746(F) Apparently you've been programming in B<csh> too much. Variables
2747are always mentioned with the $ in Perl, unlike in the shells, where it
2748can vary from one line to the next.
6df41af2 2749
cc507455 2750=item (Missing operator before %s?)
748a9306 2751
56da5a46
RGS
2752(S syntax) This is an educated guess made in conjunction with the message
2753"%s found where operator expected". Often the missing operator is a comma.
748a9306 2754
ab13f0c7
JH
2755=item Missing right brace on %s
2756
ff3f963a
KW
2757(F) Missing right brace in C<\x{...}>, C<\p{...}>, C<\P{...}>, or C<\N{...}>.
2758
4a68bf9d 2759=item Missing right brace on \N{} or unescaped left brace after \N
ff3f963a 2760
d32207c9
FC
2761(F) C<\N> has two meanings.
2762
2763The traditional one has it followed by a name enclosed in braces,
2764meaning the character (or sequence of characters) given by that
fa816bf3 2765name. Thus C<\N{ASTERISK}> is another way of writing C<*>, valid in both
d32207c9
FC
2766double-quoted strings and regular expression patterns. In patterns,
2767it doesn't have the meaning an unescaped C<*> does.
2768
2769Starting in Perl 5.12.0, C<\N> also can have an additional meaning (only)
2770in patterns, namely to match a non-newline character. (This is short
2771for C<[^\n]>, and like C<.> but is not affected by the C</s> regex modifier.)
2772
2773This can lead to some ambiguities. When C<\N> is not followed immediately
2774by a left brace, Perl assumes the C<[^\n]> meaning. Also, if the braces
2775form a valid quantifier such as C<\N{3}> or C<\N{5,}>, Perl assumes that this
2776means to match the given quantity of non-newlines (in these examples,
27773; and 5 or more, respectively). In all other case, where there is a
2778C<\N{> and a matching C<}>, Perl assumes that a character name is desired.
2779
2780However, if there is no matching C<}>, Perl doesn't know if it was
2781mistakenly omitted, or if C<[^\n]{> was desired, and raises this error.
2782If you meant the former, add the right brace; if you meant the latter,
2783escape the brace with a backslash, like so: C<\N\{>
ab13f0c7 2784
d98d5fff 2785=item Missing right curly or square bracket
a0d0e21e 2786
be771a83
GS
2787(F) The lexer counted more opening curly or square brackets than closing
2788ones. As a general rule, you'll find it's missing near the place you
2789were last editing.
a0d0e21e 2790
6df41af2
GS
2791=item (Missing semicolon on previous line?)
2792
56da5a46
RGS
2793(S syntax) This is an educated guess made in conjunction with the message
2794"%s found where operator expected". Don't automatically put a semicolon on
6df41af2
GS
2795the previous line just because you saw this message.
2796
a0d0e21e
LW
2797=item Modification of a read-only value attempted
2798
2799(F) You tried, directly or indirectly, to change the value of a
5f05dabc 2800constant. You didn't, of course, try "2 = 1", because the compiler
a0d0e21e
LW
2801catches that. But an easy way to do the same thing is:
2802
2803 sub mod { $_[0] = 1 }
2804 mod(2);
2805
2806Another way is to assign to a substr() that's off the end of the string.
2807
c5674021
PDF
2808Yet another way is to assign to a C<foreach> loop I<VAR> when I<VAR>
2809is aliased to a constant in the look I<LIST>:
2810
b7e4ecc1
FC
2811 $x = 1;
2812 foreach my $n ($x, 2) {
2813 $n *= 2; # modifies the $x, but fails on attempt to
2814 } # modify the 2
c5674021 2815
7a4340ed 2816=item Modification of non-creatable array value attempted, %s
a0d0e21e
LW
2817
2818(F) You tried to make an array value spring into existence, and the
2819subscript was probably negative, even counting from end of the array
2820backwards.
2821
7a4340ed 2822=item Modification of non-creatable hash value attempted, %s
a0d0e21e 2823
be771a83
GS
2824(P) You tried to make a hash value spring into existence, and it
2825couldn't be created for some peculiar reason.
a0d0e21e
LW
2826
2827=item Module name must be constant
2828
2829(F) Only a bare module name is allowed as the first argument to a "use".
2830
be98fb35 2831=item Module name required with -%c option
6df41af2 2832
be98fb35
GS
2833(F) The C<-M> or C<-m> options say that Perl should load some module, but
2834you omitted the name of the module. Consult L<perlrun> for full details
2835about C<-M> and C<-m>.
6df41af2 2836
fe13d51d 2837=item More than one argument to '%s' open
ed9aa3b7 2838
6903afa2 2839(F) The C<open> function has been asked to open multiple files. This
ed9aa3b7
SG
2840can happen if you are trying to open a pipe to a command that takes a
2841list of arguments, but have forgotten to specify a piped open mode.
2842See L<perlfunc/open> for details.
2843
a0d0e21e
LW
2844=item msg%s not implemented
2845
2846(F) You don't have System V message IPC on your system.
2847
2848=item Multidimensional syntax %s not supported
2849
75b44862
GS
2850(W syntax) Multidimensional arrays aren't written like C<$foo[1,2,3]>.
2851They're written like C<$foo[1][2][3]>, as in C.
8b1a09fc 2852
49704364 2853=item '/' must follow a numeric type in unpack
6df41af2 2854
49704364
WL
2855(F) You had an unpack template that contained a '/', but this did not
2856follow some unpack specification producing a numeric value.
2857See L<perlfunc/pack>.
6df41af2
GS
2858
2859=item "my sub" not yet implemented
2860
be771a83
GS
2861(F) Lexically scoped subroutines are not yet implemented. Don't try
2862that yet.
6df41af2 2863
fd1b7234 2864=item "my" variable %s can't be in a package
6df41af2 2865
be771a83
GS
2866(F) Lexically scoped variables aren't in a package, so it doesn't make
2867sense to try to declare one with a package qualifier on the front. Use
2868local() if you want to localize a package variable.
09bef843 2869
8149aa9f
FC
2870=item Name "%s::%s" used only once: possible typo
2871
2872(W once) Typographical errors often show up as unique variable names.
2873If you had a good reason for having a unique name, then just mention it
2874again somehow to suppress the message. The C<our> declaration is
2875provided for this purpose.
2876
2877NOTE: This warning detects symbols that have been used only once so $c, @c,
2878%c, *c, &c, sub c{}, c(), and c (the filehandle or format) are considered
2879the same; if a program uses $c only once but also uses any of the others it
2880will not trigger this warning.
2881
4a68bf9d 2882=item \N in a character class must be a named character: \N{...}
ff3f963a 2883
c3c41406 2884(F) The new (5.12) meaning of C<\N> as C<[^\n]> is not valid in a bracketed
f4e361c7
FC
2885character class, for the same reason that C<.> in a character class loses
2886its specialness: it matches almost everything, which is probably not
2887what you want.
c3c41406 2888
4a68bf9d 2889=item \N{NAME} must be resolved by the lexer
c3c41406 2890
f4e361c7
FC
2891(F) When compiling a regex pattern, an unresolved named character or
2892sequence was encountered. This can happen in any of several ways that
2893bypass the lexer, such as using single-quotish context, or an extra
7fae04b9 2894backslash in double-quotish:
c3c41406
KW
2895
2896 $re = '\N{SPACE}'; # Wrong!
b09c05e6 2897 $re = "\\N{SPACE}"; # Wrong!
c3c41406
KW
2898 /$re/;
2899
b09c05e6 2900Instead, use double-quotes with a single backslash:
c3c41406
KW
2901
2902 $re = "\N{SPACE}"; # ok
2903 /$re/;
2904
2905The lexer can be bypassed as well by creating the pattern from smaller
2906components:
2907
2908 $re = '\N';
2909 /${re}{SPACE}/; # Wrong!
2910
2911It's not a good idea to split a construct in the middle like this, and it
2912doesn't work here. Instead use the solution above.
2913
2914Finally, the message also can happen under the C</x> regex modifier when the
2915C<\N> is separated by spaces from the C<{>, in which case, remove the spaces.
2916
2917 /\N {SPACE}/x; # Wrong!
2918 /\N{SPACE}/x; # ok
ff3f963a 2919
49704364
WL
2920=item Negative '/' count in unpack
2921
2922(F) The length count obtained from a length/code unpack operation was
2923negative. See L<perlfunc/pack>.
2924
a0d0e21e
LW
2925=item Negative length
2926
be771a83
GS
2927(F) You tried to do a read/write/send/recv operation with a buffer
2928length that is less than 0. This is difficult to imagine.
a0d0e21e 2929
ed9aa3b7
SG
2930=item Negative offset to vec in lvalue context
2931
2932(F) When C<vec> is called in an lvalue context, the second argument must be
2933greater than or equal to zero.
2934
7253e4e3 2935=item Nested quantifiers in regex; marked by <-- HERE in m/%s/
a0d0e21e 2936
6903afa2
FC
2937(F) You can't quantify a quantifier without intervening parentheses.
2938So things like ** or +* or ?* are illegal. The <-- HERE shows in the
2939regular expression about where the problem was discovered.
a0d0e21e 2940
7253e4e3 2941Note that the minimal matching quantifiers, C<*?>, C<+?>, and
be771a83 2942C<??> appear to be nested quantifiers, but aren't. See L<perlre>.
a0d0e21e 2943
6df41af2 2944=item %s never introduced
a0d0e21e 2945
be771a83
GS
2946(S internal) The symbol in question was declared but somehow went out of
2947scope before it could possibly have been used.
a0d0e21e 2948
2c7d6b9c
RGS
2949=item next::method/next::can/maybe::next::method cannot find enclosing method
2950
2951(F) C<next::method> needs to be called within the context of a
2952real method in a real package, and it could not find such a context.
2953See L<mro>.
2954
a0d0e21e
LW
2955=item No %s allowed while running setuid
2956
be771a83
GS
2957(F) Certain operations are deemed to be too insecure for a setuid or
2958setgid script to even be allowed to attempt. Generally speaking there
2959will be another way to do what you want that is, if not secure, at least
2960securable. See L<perlsec>.
a0d0e21e 2961
a0d0e21e
LW
2962=item No comma allowed after %s
2963
6903afa2
FC
2964(F) A list operator that has a filehandle or "indirect object" is
2965not allowed to have a comma between that and the following arguments.
a0d0e21e
LW
2966Otherwise it'd be just another one of the arguments.
2967
6903afa2
FC
2968One possible cause for this is that you expected to have imported
2969a constant to your name space with B<use> or B<import> while no such
2970importing took place, it may for example be that your operating
2971system does not support that particular constant. Hopefully you did
2972use an explicit import list for the constants you expect to see;
2973please see L<perlfunc/use> and L<perlfunc/import>. While an
2974explicit import list would probably have caught this error earlier
2975it naturally does not remedy the fact that your operating system
2976still does not support that constant. Maybe you have a typo in
2977the constants of the symbol import list of B<use> or B<import> or in the
2978constant name at the line where this error was triggered?
0a753a76 2979
748a9306
LW
2980=item No command into which to pipe on command line
2981
be771a83
GS
2982(F) An error peculiar to VMS. Perl handles its own command line
2983redirection, and found a '|' at the end of the command line, so it
2984doesn't know where you want to pipe the output from this command.
748a9306 2985
a0d0e21e
LW
2986=item No DB::DB routine defined
2987
be771a83 2988(F) The currently executing code was compiled with the B<-d> switch, but
f7af5ce1 2989for some reason the current debugger (e.g. F<perl5db.pl> or a C<Devel::>
ccafdc96
RGS
2990module) didn't define a routine to be called at the beginning of each
2991statement.
a0d0e21e
LW
2992
2993=item No dbm on this machine
2994
2995(P) This is counted as an internal error, because every machine should
5f05dabc 2996supply dbm nowadays, because Perl comes with SDBM. See L<SDBM_File>.
a0d0e21e 2997
ccafdc96 2998=item No DB::sub routine defined
a0d0e21e 2999
ccafdc96
RGS
3000(F) The currently executing code was compiled with the B<-d> switch, but
3001for some reason the current debugger (e.g. F<perl5db.pl> or a C<Devel::>
3002module) didn't define a C<DB::sub> routine to be called at the beginning
3003of each ordinary subroutine call.
a0d0e21e 3004
c47ff5f1 3005=item No error file after 2> or 2>> on command line
748a9306 3006
be771a83
GS
3007(F) An error peculiar to VMS. Perl handles its own command line
3008redirection, and found a '2>' or a '2>>' on the command line, but can't
3009find the name of the file to which to write data destined for stderr.
748a9306 3010
49704364
WL
3011=item No group ending character '%c' found in template
3012
3013(F) A pack or unpack template has an opening '(' or '[' without its
6903afa2 3014matching counterpart. See L<perlfunc/pack>.
49704364 3015
c47ff5f1 3016=item No input file after < on command line
748a9306 3017
be771a83
GS
3018(F) An error peculiar to VMS. Perl handles its own command line
3019redirection, and found a '<' on the command line, but can't find the
3020name of the file from which to read data for stdin.
748a9306 3021
2c7d6b9c
RGS
3022=item No next::method '%s' found for %s
3023
3024(F) C<next::method> found no further instances of this method name
3025in the remaining packages of the MRO of this class. If you don't want
3026it throwing an exception, use C<maybe::next::method>
fa816bf3 3027or C<next::can>. See L<mro>.
2c7d6b9c 3028
6df41af2
GS
3029=item "no" not allowed in expression
3030
be771a83
GS
3031(F) The "no" keyword is recognized and executed at compile time, and
3032returns no useful value. See L<perlmod>.
6df41af2 3033
c47ff5f1 3034=item No output file after > on command line
748a9306 3035
be771a83
GS
3036(F) An error peculiar to VMS. Perl handles its own command line
3037redirection, and found a lone '>' at the end of the command line, so it
3038doesn't know where you wanted to redirect stdout.
748a9306 3039
c47ff5f1 3040=item No output file after > or >> on command line
748a9306 3041
be771a83
GS
3042(F) An error peculiar to VMS. Perl handles its own command line
3043redirection, and found a '>' or a '>>' on the command line, but can't
3044find the name of the file to which to write data destined for stdout.
748a9306 3045
1ec3e8de
GS
3046=item No package name allowed for variable %s in "our"
3047
be771a83
GS
3048(F) Fully qualified variable names are not allowed in "our"
3049declarations, because that doesn't make much sense under existing
3050semantics. Such syntax is reserved for future extensions.
1ec3e8de 3051
a0d0e21e
LW
3052=item No Perl script found in input
3053
3054(F) You called C<perl -x>, but no line was found in the file beginning
3055with #! and containing the word "perl".
3056
3057=item No setregid available
3058
3059(F) Configure didn't find anything resembling the setregid() call for
3060your system.
3061
3062=item No setreuid available
3063
3064(F) Configure didn't find anything resembling the setreuid() call for
3065your system.
3066
6df41af2
GS
3067=item No %s specified for -%c
3068
3069(F) The indicated command line switch needs a mandatory argument, but
3070you haven't specified one.
f7af5ce1 3071
e75d1f10
RD
3072=item No such class field "%s" in variable %s of type %s
3073
b7e4ecc1
FC
3074(F) You tried to access a key from a hash through the indicated typed
3075variable but that key is not allowed by the package of the same type.
3076The indicated package has restricted the set of allowed keys using the
3077L<fields> pragma.
e75d1f10 3078
2c692339
RGS
3079=item No such class %s
3080
dc7e5945
FC
3081(F) You provided a class qualifier in a "my", "our" or "state"
3082declaration, but this class doesn't exist at this point in your program.
2c692339 3083
3c20a832
SP
3084=item No such hook: %s
3085
dc7e5945
FC
3086(F) You specified a signal hook that was not recognized by Perl.
3087Currently, Perl accepts C<__DIE__> and C<__WARN__> as valid signal hooks.
3c20a832 3088
6df41af2
GS
3089=item No such pipe open
3090
3091(P) An error peculiar to VMS. The internal routine my_pclose() tried to
be771a83
GS
3092close a pipe which hadn't been opened. This should have been caught
3093earlier as an attempt to close an unopened filehandle.
6df41af2 3094
a0d0e21e
LW
3095=item No such signal: SIG%s
3096
be771a83
GS
3097(W signal) You specified a signal name as a subscript to %SIG that was
3098not recognized. Say C<kill -l> in your shell to see the valid signal
3099names on your system.
a0d0e21e
LW
3100
3101=item Not a CODE reference
3102
3103(F) Perl was trying to evaluate a reference to a code value (that is, a
3104subroutine), but found a reference to something else instead. You can
be771a83
GS
3105use the ref() function to find out what kind of ref it really was. See
3106also L<perlref>.
a0d0e21e
LW
3107
3108=item Not a format reference
3109
3110(F) I'm not sure how you managed to generate a reference to an anonymous
3111format, but this indicates you did, and that it didn't exist.
3112
3113=item Not a GLOB reference
3114
be771a83
GS
3115(F) Perl was trying to evaluate a reference to a "typeglob" (that is, a
3116symbol table entry that looks like C<*foo>), but found a reference to
3117something else instead. You can use the ref() function to find out what
3118kind of ref it really was. See L<perlref>.
a0d0e21e
LW
3119
3120=item Not a HASH reference
3121
be771a83
GS
3122(F) Perl was trying to evaluate a reference to a hash value, but found a
3123reference to something else instead. You can use the ref() function to
3124find out what kind of ref it really was. See L<perlref>.
a0d0e21e 3125
6df41af2
GS
3126=item Not an ARRAY reference
3127
be771a83
GS
3128(F) Perl was trying to evaluate a reference to an array value, but found
3129a reference to something else instead. You can use the ref() function
3130to find out what kind of ref it really was. See L<perlref>.
6df41af2 3131
d4fc4415
FC
3132=item Not an unblessed ARRAY reference
3133
3134(F) You passed a reference to a blessed array to C<push>, C<shift> or
3135another array function. These only accept unblessed array references
3136or arrays beginning explicitly with C<@>.
3137
a0d0e21e
LW
3138=item Not a SCALAR reference
3139
be771a83
GS
3140(F) Perl was trying to evaluate a reference to a scalar value, but found
3141a reference to something else instead. You can use the ref() function
3142to find out what kind of ref it really was. See L<perlref>.
a0d0e21e
LW
3143
3144=item Not a subroutine reference
3145
3146(F) Perl was trying to evaluate a reference to a code value (that is, a
3147subroutine), but found a reference to something else instead. You can
be771a83
GS
3148use the ref() function to find out what kind of ref it really was. See
3149also L<perlref>.
a0d0e21e 3150
e7ea3e70 3151=item Not a subroutine reference in overload table
a0d0e21e
LW
3152
3153(F) An attempt was made to specify an entry in an overloading table that
8b1a09fc 3154doesn't somehow point to a valid subroutine. See L<overload>.
a0d0e21e 3155
a0d0e21e
LW
3156=item Not enough arguments for %s
3157
3158(F) The function requires more arguments than you specified.
3159
6df41af2
GS
3160=item Not enough format arguments
3161
be771a83
GS
3162(W syntax) A format specified more picture fields than the next line
3163supplied. See L<perlform>.
6df41af2
GS
3164
3165=item %s: not found
3166
be771a83
GS
3167(A) You've accidentally run your script through the Bourne shell instead
3168of Perl. Check the #! line, or manually feed your script into Perl
3169yourself.
6df41af2
GS
3170
3171=item no UTC offset information; assuming local time is UTC
a0d0e21e 3172
6df41af2
GS
3173(S) A warning peculiar to VMS. Perl was unable to find the local
3174timezone offset, so it's assuming that local system time is equivalent
be771a83
GS
3175to UTC. If it's not, define the logical name
3176F<SYS$TIMEZONE_DIFFERENTIAL> to translate to the number of seconds which
3177need to be added to UTC to get local time.
a0d0e21e 3178
f0a2b745
KW
3179=item Non-octal character '%c'. Resolved as "%s"
3180
fa816bf3
FC
3181(W digit) In parsing an octal numeric constant, a character was
3182unexpectedly encountered that isn't octal. The resulting value
3183is as indicated.
f0a2b745 3184
4ef2275c
GA
3185=item Non-string passed as bitmask
3186
3187(W misc) A number has been passed as a bitmask argument to select().
3188Use the vec() function to construct the file descriptor bitmasks for
6903afa2 3189select. See L<perlfunc/select>.
4ef2275c 3190
a0d0e21e
LW
3191=item Null filename used
3192
be771a83
GS
3193(F) You can't require the null filename, especially because on many
3194machines that means the current directory! See L<perlfunc/require>.
a0d0e21e 3195
6df41af2
GS
3196=item NULL OP IN RUN
3197
f84fe999 3198(S debugging) Some internal routine called run() with a null opcode
be771a83 3199pointer.
6df41af2 3200
55497cff 3201=item Null picture in formline
3202
3203(F) The first argument to formline must be a valid format picture
3204specification. It was found to be empty, which probably means you
3205supplied it an uninitialized value. See L<perlform>.
3206
a0d0e21e
LW
3207=item Null realloc
3208
3209(P) An attempt was made to realloc NULL.
3210
3211=item NULL regexp argument
3212
5f05dabc 3213(P) The internal pattern matching routines blew it big time.
a0d0e21e
LW
3214
3215=item NULL regexp parameter
3216
3217(P) The internal pattern matching routines are out of their gourd.
3218
fc36a67e 3219=item Number too long
3220
be771a83 3221(F) Perl limits the representation of decimal numbers in programs to
da75cd15 3222about 250 characters. You've exceeded that length. Future
be771a83
GS
3223versions of Perl are likely to eliminate this arbitrary limitation. In
3224the meantime, try using scientific notation (e.g. "1e6" instead of
3225"1_000_000").
fc36a67e 3226
f0a2b745
KW
3227=item Number with no digits
3228
1043934d 3229(F) Perl was looking for a number but found nothing that looked like
6903afa2 3230a number. This happens, for example with C<\o{}>, with no number between
1043934d 3231the braces.
f0a2b745 3232
252aa082
JH
3233=item Octal number > 037777777777 non-portable
3234
75b44862 3235(W portable) The octal number you specified is larger than 2**32-1
be771a83
GS
3236(4294967295) and therefore non-portable between systems. See
3237L<perlport> for more on portability concerns.
252aa082 3238
6ad11d81
JH
3239=item Odd number of arguments for overload::constant
3240
04a80ee0 3241(W overload) The call to overload::constant contained an odd number of
6903afa2 3242arguments. The arguments should come in pairs.
6ad11d81 3243
b21befc1
MG
3244=item Odd number of elements in anonymous hash
3245
3246(W misc) You specified an odd number of elements to initialize a hash,
3247which is odd, because hashes come in key/value pairs.
3248
1930e939 3249=item Odd number of elements in hash assignment
a0d0e21e 3250
be771a83
GS
3251(W misc) You specified an odd number of elements to initialize a hash,
3252which is odd, because hashes come in key/value pairs.
a0d0e21e 3253
bbce6d69 3254=item Offset outside string
3255
1fa582fa 3256(F)(W layer) You tried to do a read/write/send/recv/seek operation
42bc49da 3257with an offset pointing outside the buffer. This is difficult to
f5a7294f
JH
3258imagine. The sole exceptions to this are that zero padding will
3259take place when going past the end of the string when either
3260C<sysread()>ing a file, or when seeking past the end of a scalar opened
1a7a2554
MB
3261for I/O (in anticipation of future reads and to imitate the behaviour
3262with real files).
bbce6d69 3263
c289d2f7 3264=item %s() on unopened %s
2dd78f96
JH
3265
3266(W unopened) An I/O operation was attempted on a filehandle that was
3267never initialized. You need to do an open(), a sysopen(), or a socket()
3268call, or call a constructor from the FileHandle package.
3269
96ebfdd7
RK
3270=item -%s on unopened filehandle %s
3271
3272(W unopened) You tried to invoke a file test operator on a filehandle
3273that isn't open. Check your control flow. See also L<perlfunc/-X>.
3274
a0d0e21e
LW
3275=item oops: oopsAV
3276
e476b1b5 3277(S internal) An internal warning that the grammar is screwed up.
a0d0e21e
LW
3278
3279=item oops: oopsHV
3280
e476b1b5 3281(S internal) An internal warning that the grammar is screwed up.
a0d0e21e 3282
abc718f2
RGS
3283=item Opening dirhandle %s also as a file
3284
a4a4c9e2 3285(W io, deprecated) You used open() to associate a filehandle to
abc718f2
RGS
3286a symbol (glob or scalar) that already holds a dirhandle.
3287Although legal, this idiom might render your code confusing
3288and is deprecated.
3289
3290=item Opening filehandle %s also as a directory
3291
a4a4c9e2 3292(W io, deprecated) You used opendir() to associate a dirhandle to
abc718f2
RGS
3293a symbol (glob or scalar) that already holds a filehandle.
3294Although legal, this idiom might render your code confusing
3295and is deprecated.
3296
a0288114