This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
cd4f9758b0004fb3165748e32cdf52cf09dc4a3c
[perl5.git] / pod / perldiag.pod
1 =head1 NAME
2
3 perldiag - various Perl diagnostics
4
5 =head1 DESCRIPTION
6
7 These messages are classified as follows (listed in increasing order of
8 desperation):
9
10     (W) A warning (optional).
11     (D) A deprecation (enabled by default).
12     (S) A severe warning (enabled by default).
13     (F) A fatal error (trappable).
14     (P) An internal error you should never see (trappable).
15     (X) A very fatal error (nontrappable).
16     (A) An alien error message (not generated by Perl).
17
18 The majority of messages from the first three classifications above
19 (W, D & S) can be controlled using the C<warnings> pragma.
20
21 If a message can be controlled by the C<warnings> pragma, its warning
22 category is included with the classification letter in the description
23 below.
24
25 Optional warnings are enabled by using the C<warnings> pragma or the B<-w>
26 and B<-W> switches. Warnings may be captured by setting C<$SIG{__WARN__}>
27 to a reference to a routine that will be called on each warning instead
28 of printing it.  See L<perlvar>.
29
30 Severe warnings are always enabled, unless they are explicitly disabled
31 with the C<warnings> pragma or the B<-X> switch.
32
33 Trappable errors may be trapped using the eval operator.  See
34 L<perlfunc/eval>.  In almost all cases, warnings may be selectively
35 disabled or promoted to fatal errors using the C<warnings> pragma.
36 See L<warnings>.
37
38 The messages are in alphabetical order, without regard to upper or
39 lower-case.  Some of these messages are generic.  Spots that vary are
40 denoted with a %s or other printf-style escape.  These escapes are
41 ignored by the alphabetical order, as are all characters other than
42 letters.  To look up your message, just ignore anything that is not a
43 letter.
44
45 =over 4
46
47 =item accept() on closed socket %s
48
49 (W closed) You tried to do an accept on a closed socket.  Did you forget
50 to check the return value of your socket() call?  See
51 L<perlfunc/accept>.
52
53 =item Allocation too large: %x
54
55 (X) You can't allocate more than 64K on an MS-DOS machine.
56
57 =item '%c' allowed only after types %s
58
59 (F) The modifiers '!', '<' and '>' are allowed in pack() or unpack() only
60 after certain types.  See L<perlfunc/pack>.
61
62 =item Ambiguous call resolved as CORE::%s(), qualify as such or use &
63
64 (W ambiguous) A subroutine you have declared has the same name as a Perl
65 keyword, and you have used the name without qualification for calling
66 one or the other.  Perl decided to call the builtin because the
67 subroutine is not imported.
68
69 To force interpretation as a subroutine call, either put an ampersand
70 before the subroutine name, or qualify the name with its package.
71 Alternatively, you can import the subroutine (or pretend that it's
72 imported with the C<use subs> pragma).
73
74 To silently interpret it as the Perl operator, use the C<CORE::> prefix
75 on the operator (e.g. C<CORE::log($x)>) or declare the subroutine
76 to be an object method (see L<perlsub/"Subroutine Attributes"> or
77 L<attributes>).
78
79 =item Ambiguous overloaded argument to %s resolved as %s
80
81 (W ambiguous) You called C<keys>, C<values> or C<each> on an object that had
82 overloading of C<%{}> or C<@{}> or both.  In such a case, the object is
83 dereferenced according to its overloading, not its underlying reference type.
84 The warning is issued when C<%{}> overloading exists on a blessed arrayref,
85 when C<@{}> overloading exists on a blessed hashref, or when both overloadings
86 are defined (in which case C<%{}> is used).  You can force the interpretation
87 of the object by explicitly dereferencing it as an array or hash instead of
88 passing the object itself to C<keys>, C<values> or C<each>.
89
90 =item Ambiguous range in transliteration operator
91
92 (F) You wrote something like C<tr/a-z-0//> which doesn't mean anything at
93 all.  To include a C<-> character in a transliteration, put it either
94 first or last.  (In the past, C<tr/a-z-0//> was synonymous with
95 C<tr/a-y//>, which was probably not what you would have expected.)
96
97 =item Ambiguous use of %s resolved as %s
98
99 (W ambiguous)(S) You said something that may not be interpreted the way
100 you thought.  Normally it's pretty easy to disambiguate it by supplying
101 a missing quote, operator, parenthesis pair or declaration.
102
103 =item Ambiguous use of %c resolved as operator %c
104
105 (W ambiguous) C<%>, C<&>, and C<*> are both infix operators (modulus,
106 bitwise and, and multiplication) I<and> initial special characters
107 (denoting hashes, subroutines and typeglobs), and you said something
108 like C<*foo * foo> that might be interpreted as either of them.  We
109 assumed you meant the infix operator, but please try to make it more
110 clear -- in the example given, you might write C<*foo * foo()> if you
111 really meant to multiply a glob by the result of calling a function.
112
113 =item Ambiguous use of %c{%s} resolved to %c%s
114
115 (W ambiguous) You wrote something like C<@{foo}>, which might be
116 asking for the variable C<@foo>, or it might be calling a function
117 named foo, and dereferencing it as an array reference.  If you wanted
118 the varable, you can just write C<@foo>.  If you wanted to call the
119 function, write C<@{foo()}> ... or you could just not have a variable
120 and a function with the same name, and save yourself a lot of trouble.
121
122 =item Ambiguous use of %c{%s%s} resolved to %c%s%s
123
124 (W ambiguous) You wrote something like C<${foo[2]}> (where foo
125 represents the name of a Perl keyword), which might be looking for
126 element number 2 of the array named C<@foo>, in which case please write
127 C<$foo[2]>, or you might have meant to pass an anonymous arrayref to
128 the function named foo, and then do a scalar deref on the value it
129 returns.  If you meant that, write C<${foo([2])}>.
130
131 In regular expressions, the C<${foo[2]}> syntax is sometimes necessary
132 to disambiguate between array subscripts and character classes.
133 C</$length[2345]/>, for instance, will be interpreted as C<$length>
134 followed by the character class C<[2345]>. If an array subscript is what
135 you want, you can avoid the warning by changing C</${length[2345]}/>
136 to the unsightly C</${\$length[2345]}/>, by renaming your array to
137 something that does not coincide with a built-in keyword, or by
138 simply turning off warnings with C<no warnings 'ambiguous';>.
139
140 =item Ambiguous use of -%s resolved as -&%s()
141
142 (W ambiguous) You wrote something like C<-foo>, which might be the
143 string C<"-foo">, or a call to the function C<foo>, negated.  If you meant
144 the string, just write C<"-foo">.  If you meant the function call,
145 write C<-foo()>.
146
147 =item '|' and '<' may not both be specified on command line
148
149 (F) An error peculiar to VMS.  Perl does its own command line
150 redirection, and found that STDIN was a pipe, and that you also tried to
151 redirect STDIN using '<'.  Only one STDIN stream to a customer, please.
152
153 =item '|' and '>' may not both be specified on command line
154
155 (F) An error peculiar to VMS.  Perl does its own command line
156 redirection, and thinks you tried to redirect stdout both to a file and
157 into a pipe to another command.  You need to choose one or the other,
158 though nothing's stopping you from piping into a program or Perl script
159 which 'splits' output into two streams, such as
160
161     open(OUT,">$ARGV[0]") or die "Can't write to $ARGV[0]: $!";
162     while (<STDIN>) {
163         print;
164         print OUT;
165     }
166     close OUT;
167
168 =item Applying %s to %s will act on scalar(%s)
169
170 (W misc) The pattern match (C<//>), substitution (C<s///>), and
171 transliteration (C<tr///>) operators work on scalar values.  If you apply
172 one of them to an array or a hash, it will convert the array or hash to
173 a scalar value (the length of an array, or the population info of a
174 hash) and then work on that scalar value.  This is probably not what
175 you meant to do.  See L<perlfunc/grep> and L<perlfunc/map> for
176 alternatives.
177
178 =item Args must match #! line
179
180 (F) The setuid emulator requires that the arguments Perl was invoked
181 with match the arguments specified on the #! line.  Since some systems
182 impose a one-argument limit on the #! line, try combining switches;
183 for example, turn C<-w -U> into C<-wU>.
184
185 =item Arg too short for msgsnd
186
187 (F) msgsnd() requires a string at least as long as sizeof(long).
188
189 =item %s argument is not a HASH or ARRAY element or a subroutine
190
191 (F) The argument to exists() must be a hash or array element or a
192 subroutine with an ampersand, such as:
193
194     $foo{$bar}
195     $ref->{"susie"}[12]
196     &do_something
197
198 =item %s argument is not a HASH or ARRAY element or slice
199
200 (F) The argument to delete() must be either a hash or array element,
201 such as:
202
203     $foo{$bar}
204     $ref->{"susie"}[12]
205
206 or a hash or array slice, such as:
207
208     @foo[$bar, $baz, $xyzzy]
209     @{$ref->[12]}{"susie", "queue"}
210
211 =item %s argument is not a subroutine name
212
213 (F) The argument to exists() for C<exists &sub> must be a subroutine
214 name, and not a subroutine call.  C<exists &sub()> will generate this
215 error.
216
217 =item Argument "%s" isn't numeric%s
218
219 (W numeric) The indicated string was fed as an argument to an operator
220 that expected a numeric value instead.  If you're fortunate the message
221 will identify which operator was so unfortunate.
222
223 =item Argument list not closed for PerlIO layer "%s"
224
225 (W layer) When pushing a layer with arguments onto the Perl I/O system you
226 forgot the ) that closes the argument list.  (Layers take care of transforming
227 data between external and internal representations.)  Perl stopped parsing
228 the layer list at this point and did not attempt to push this layer.
229 If your program didn't explicitly request the failing operation, it may be
230 the result of the value of the environment variable PERLIO.
231
232 =item Array @%s missing the @ in argument %d of %s()
233
234 (D deprecated) Really old Perl let you omit the @ on array names in some
235 spots.  This is now heavily deprecated.
236
237 =item assertion botched: %s
238
239 (P) The malloc package that comes with Perl had an internal failure.
240
241 =item Assertion failed: file "%s"
242
243 (P) A general assertion failed.  The file in question must be examined.
244
245 =item Assignment to both a list and a scalar
246
247 (F) If you assign to a conditional operator, the 2nd and 3rd arguments
248 must either both be scalars or both be lists.  Otherwise Perl won't
249 know which context to supply to the right side.
250
251 =item A thread exited while %d threads were running
252
253 (W threads)(S) When using threaded Perl, a thread (not necessarily the main
254 thread) exited while there were still other threads running.
255 Usually it's a good idea first to collect the return values of the
256 created threads by joining them, and only then to exit from the main
257 thread.  See L<threads>.
258
259 =item Attempt to access disallowed key '%s' in a restricted hash
260
261 (F) The failing code has attempted to get or set a key which is not in
262 the current set of allowed keys of a restricted hash.
263
264 =item Attempt to bless into a reference
265
266 (F) The CLASSNAME argument to the bless() operator is expected to be
267 the name of the package to bless the resulting object into. You've
268 supplied instead a reference to something: perhaps you wrote
269
270     bless $self, $proto;
271
272 when you intended
273
274     bless $self, ref($proto) || $proto;
275
276 If you actually want to bless into the stringified version
277 of the reference supplied, you need to stringify it yourself, for
278 example by:
279
280     bless $self, "$proto";
281
282 =item Attempt to delete disallowed key '%s' from a restricted hash
283
284 (F) The failing code attempted to delete from a restricted hash a key
285 which is not in its key set.
286
287 =item Attempt to delete readonly key '%s' from a restricted hash
288
289 (F) The failing code attempted to delete a key whose value has been
290 declared readonly from a restricted hash.
291
292 =item Attempt to free non-arena SV: 0x%x
293
294 (P internal) All SV objects are supposed to be allocated from arenas
295 that will be garbage collected on exit.  An SV was discovered to be
296 outside any of those arenas.
297
298 =item Attempt to free nonexistent shared string
299
300 (P internal) Perl maintains a reference-counted internal table of
301 strings to optimize the storage and access of hash keys and other
302 strings.  This indicates someone tried to decrement the reference count
303 of a string that can no longer be found in the table.
304
305 =item Attempt to free temp prematurely
306
307 (W debugging) Mortalized values are supposed to be freed by the
308 free_tmps() routine.  This indicates that something else is freeing the
309 SV before the free_tmps() routine gets a chance, which means that the
310 free_tmps() routine will be freeing an unreferenced scalar when it does
311 try to free it.
312
313 =item Attempt to free unreferenced glob pointers
314
315 (P internal) The reference counts got screwed up on symbol aliases.
316
317 =item Attempt to free unreferenced scalar
318
319 (W internal) Perl went to decrement the reference count of a scalar to
320 see if it would go to 0, and discovered that it had already gone to 0
321 earlier, and should have been freed, and in fact, probably was freed.
322 This could indicate that SvREFCNT_dec() was called too many times, or
323 that SvREFCNT_inc() was called too few times, or that the SV was
324 mortalized when it shouldn't have been, or that memory has been
325 corrupted.
326
327 =item Attempt to join self
328
329 (F) You tried to join a thread from within itself, which is an
330 impossible task.  You may be joining the wrong thread, or you may need
331 to move the join() to some other thread.
332
333 =item Attempt to pack pointer to temporary value
334
335 (W pack) You tried to pass a temporary value (like the result of a
336 function, or a computed expression) to the "p" pack() template.  This
337 means the result contains a pointer to a location that could become
338 invalid anytime, even before the end of the current statement.  Use
339 literals or global values as arguments to the "p" pack() template to
340 avoid this warning.
341
342 =item Attempt to reload %s aborted.
343
344 (F) You tried to load a file with C<use> or C<require> that failed to
345 compile once already.  Perl will not try to compile this file again
346 unless you delete its entry from %INC.  See L<perlfunc/require> and
347 L<perlvar/%INC>.
348
349 =item Attempt to set length of freed array
350
351 (W) You tried to set the length of an array which has been freed.  You
352 can do this by storing a reference to the scalar representing the last index
353 of an array and later assigning through that reference. For example
354
355     $r = do {my @a; \$#a};
356     $$r = 503
357
358 =item Attempt to use reference as lvalue in substr
359
360 (W substr) You supplied a reference as the first argument to substr()
361 used as an lvalue, which is pretty strange.  Perhaps you forgot to
362 dereference it first.  See L<perlfunc/substr>.
363
364 =item Attribute "locked" is deprecated
365
366 (D deprecated) You have used the attributes pragma to modify the "locked"
367 attribute on a code reference. The :locked attribute is obsolete, has had no
368 effect since 5005 threads were removed, and will be removed in a future
369 release of Perl 5.
370
371 =item Attribute "unique" is deprecated
372
373 (D deprecated) You have used the attributes pragma to modify the "unique"
374 attribute on an array, hash or scalar reference. The :unique attribute has
375 had no effect since Perl 5.8.8, and will be removed in a future release
376 of Perl 5.
377
378 =item Bad arg length for %s, is %u, should be %d
379
380 (F) You passed a buffer of the wrong size to one of msgctl(), semctl()
381 or shmctl().  In C parlance, the correct sizes are, respectively,
382 S<sizeof(struct msqid_ds *)>, S<sizeof(struct semid_ds *)>, and
383 S<sizeof(struct shmid_ds *)>.
384
385 =item Bad evalled substitution pattern
386
387 (F) You've used the C</e> switch to evaluate the replacement for a
388 substitution, but perl found a syntax error in the code to evaluate,
389 most likely an unexpected right brace '}'.
390
391 =item Bad filehandle: %s
392
393 (F) A symbol was passed to something wanting a filehandle, but the
394 symbol has no filehandle associated with it.  Perhaps you didn't do an
395 open(), or did it in another package.
396
397 =item Bad free() ignored
398
399 (S malloc) An internal routine called free() on something that had never
400 been malloc()ed in the first place. Mandatory, but can be disabled by
401 setting environment variable C<PERL_BADFREE> to 0.
402
403 This message can be seen quite often with DB_File on systems with "hard"
404 dynamic linking, like C<AIX> and C<OS/2>. It is a bug of C<Berkeley DB>
405 which is left unnoticed if C<DB> uses I<forgiving> system malloc().
406
407 =item Bad hash
408
409 (P) One of the internal hash routines was passed a null HV pointer.
410
411 =item Badly placed ()'s
412
413 (A) You've accidentally run your script through B<csh> instead
414 of Perl.  Check the #! line, or manually feed your script into
415 Perl yourself.
416
417 =item Bad name after %s::
418
419 (F) You started to name a symbol by using a package prefix, and then
420 didn't finish the symbol.  In particular, you can't interpolate outside
421 of quotes, so
422
423     $var = 'myvar';
424     $sym = mypack::$var;
425
426 is not the same as
427
428     $var = 'myvar';
429     $sym = "mypack::$var";
430
431 =item Bad plugin affecting keyword '%s'
432
433 (F) An extension using the keyword plugin mechanism violated the
434 plugin API.
435
436 =item Bad realloc() ignored
437
438 (S malloc) An internal routine called realloc() on something that had
439 never been malloc()ed in the first place. Mandatory, but can be disabled
440 by setting the environment variable C<PERL_BADFREE> to 1.
441
442 =item Bad symbol for array
443
444 (P) An internal request asked to add an array entry to something that
445 wasn't a symbol table entry.
446
447 =item Bad symbol for dirhandle
448
449 (P) An internal request asked to add a dirhandle entry to something
450 that wasn't a symbol table entry.
451
452
453 =item Bad symbol for filehandle
454
455 (P) An internal request asked to add a filehandle entry to something
456 that wasn't a symbol table entry.
457
458 =item Bad symbol for hash
459
460 (P) An internal request asked to add a hash entry to something that
461 wasn't a symbol table entry.
462
463 =item Bareword found in conditional
464
465 (W bareword) The compiler found a bareword where it expected a
466 conditional, which often indicates that an || or && was parsed as part
467 of the last argument of the previous construct, for example:
468
469     open FOO || die;
470
471 It may also indicate a misspelled constant that has been interpreted as
472 a bareword:
473
474     use constant TYPO => 1;
475     if (TYOP) { print "foo" }
476
477 The C<strict> pragma is useful in avoiding such errors.
478
479 =item Bareword "%s" not allowed while "strict subs" in use
480
481 (F) With "strict subs" in use, a bareword is only allowed as a
482 subroutine identifier, in curly brackets or to the left of the "=>"
483 symbol.  Perhaps you need to predeclare a subroutine?
484
485 =item Bareword "%s" refers to nonexistent package
486
487 (W bareword) You used a qualified bareword of the form C<Foo::>, but the
488 compiler saw no other uses of that namespace before that point.  Perhaps
489 you need to predeclare a package?
490
491 =item BEGIN failed--compilation aborted
492
493 (F) An untrapped exception was raised while executing a BEGIN
494 subroutine.  Compilation stops immediately and the interpreter is
495 exited.
496
497 =item BEGIN not safe after errors--compilation aborted
498
499 (F) Perl found a C<BEGIN {}> subroutine (or a C<use> directive, which
500 implies a C<BEGIN {}>) after one or more compilation errors had already
501 occurred.  Since the intended environment for the C<BEGIN {}> could not
502 be guaranteed (due to the errors), and since subsequent code likely
503 depends on its correct operation, Perl just gave up.
504
505 =item \1 better written as $1
506
507 (W syntax) Outside of patterns, backreferences live on as variables.
508 The use of backslashes is grandfathered on the right-hand side of a
509 substitution, but stylistically it's better to use the variable form
510 because other Perl programmers will expect it, and it works better if
511 there are more than 9 backreferences.
512
513 =item Binary number > 0b11111111111111111111111111111111 non-portable
514
515 (W portable) The binary number you specified is larger than 2**32-1
516 (4294967295) and therefore non-portable between systems.  See
517 L<perlport> for more on portability concerns.
518
519 =item bind() on closed socket %s
520
521 (W closed) You tried to do a bind on a closed socket.  Did you forget to
522 check the return value of your socket() call?  See L<perlfunc/bind>.
523
524 =item binmode() on closed filehandle %s
525
526 (W unopened) You tried binmode() on a filehandle that was never opened.
527 Check your control flow and number of arguments.
528
529 =item "\b{" is deprecated; use "\b\{" instead
530
531 =item "\B{" is deprecated; use "\B\{" instead
532
533 (W deprecated, regexp) Use of an unescaped "{" immediately following a
534 C<\b> or C<\B> is now deprecated so as to reserve its use for Perl
535 itself in a future release.
536
537 =item Bit vector size > 32 non-portable
538
539 (W portable) Using bit vector sizes larger than 32 is non-portable.
540
541 =item Bizarre copy of %s in %s
542
543 (P) Perl detected an attempt to copy an internal value that is not
544 copiable.
545
546 =item Buffer overflow in prime_env_iter: %s
547
548 (W internal) A warning peculiar to VMS.  While Perl was preparing to
549 iterate over %ENV, it encountered a logical name or symbol definition
550 which was too long, so it was truncated to the string shown.
551
552 =item Callback called exit
553
554 (F) A subroutine invoked from an external package via call_sv()
555 exited by calling exit.
556
557 =item %s() called too early to check prototype
558
559 (W prototype) You've called a function that has a prototype before the
560 parser saw a definition or declaration for it, and Perl could not check
561 that the call conforms to the prototype.  You need to either add an
562 early prototype declaration for the subroutine in question, or move the
563 subroutine definition ahead of the call to get proper prototype
564 checking.  Alternatively, if you are certain that you're calling the
565 function correctly, you may put an ampersand before the name to avoid
566 the warning.  See L<perlsub>.
567
568 =item Cannot compress integer in pack
569
570 (F) An argument to pack("w",...) was too large to compress.  The BER
571 compressed integer format can only be used with positive integers, and you
572 attempted to compress Infinity or a very large number (> 1e308).
573 See L<perlfunc/pack>.
574
575 =item Cannot compress negative numbers in pack
576
577 (F) An argument to pack("w",...) was negative.  The BER compressed integer
578 format can only be used with positive integers.  See L<perlfunc/pack>.
579
580 =item Cannot convert a reference to %s to typeglob
581
582 (F) You manipulated Perl's symbol table directly, stored a reference in it,
583 then tried to access that symbol via conventional Perl syntax. The access
584 triggers Perl to autovivify that typeglob, but it there is no legal conversion
585 from that type of reference to a typeglob.
586
587 =item Cannot copy to %s in %s
588
589 (P) Perl detected an attempt to copy a value to an internal type that cannot
590 be directly assigned to.
591
592 =item Cannot find encoding "%s"
593
594 (S io) You tried to apply an encoding that did not exist to a filehandle,
595 either with open() or binmode().
596
597 =item Can only compress unsigned integers in pack
598
599 (F) An argument to pack("w",...) was not an integer.  The BER compressed
600 integer format can only be used with positive integers, and you attempted
601 to compress something else.  See L<perlfunc/pack>.
602
603 =item Can't bless non-reference value
604
605 (F) Only hard references may be blessed.  This is how Perl "enforces"
606 encapsulation of objects.  See L<perlobj>.
607
608 =item Can't "break" in a loop topicalizer
609
610 (F) You called C<break>, but you're in a C<foreach> block rather than
611 a C<given> block. You probably meant to use C<next> or C<last>.
612
613 =item Can't "break" outside a given block
614
615 (F) You called C<break>, but you're not inside a C<given> block.
616
617 =item Can't call method "%s" on an undefined value
618
619 (F) You used the syntax of a method call, but the slot filled by the
620 object reference or package name contains an undefined value.  Something
621 like this will reproduce the error:
622
623     $BADREF = undef;
624     process $BADREF 1,2,3;
625     $BADREF->process(1,2,3);
626
627 =item Can't call method "%s" on unblessed reference
628
629 (F) A method call must know in what package it's supposed to run.  It
630 ordinarily finds this out from the object reference you supply, but you
631 didn't supply an object reference in this case.  A reference isn't an
632 object reference until it has been blessed.  See L<perlobj>.
633
634 =item Can't call method "%s" without a package or object reference
635
636 (F) You used the syntax of a method call, but the slot filled by the
637 object reference or package name contains an expression that returns a
638 defined value which is neither an object reference nor a package name.
639 Something like this will reproduce the error:
640
641     $BADREF = 42;
642     process $BADREF 1,2,3;
643     $BADREF->process(1,2,3);
644
645 =item Can't chdir to %s
646
647 (F) You called C<perl -x/foo/bar>, but C</foo/bar> is not a directory
648 that you can chdir to, possibly because it doesn't exist.
649
650 =item Can't check filesystem of script "%s" for nosuid
651
652 (P) For some reason you can't check the filesystem of the script for
653 nosuid.
654
655 =item Can't coerce %s to %s in %s
656
657 (F) Certain types of SVs, in particular real symbol table entries
658 (typeglobs), can't be forced to stop being what they are.  So you can't
659 say things like:
660
661     *foo += 1;
662
663 You CAN say
664
665     $foo = *foo;
666     $foo += 1;
667
668 but then $foo no longer contains a glob.
669
670 =item Can't "continue" outside a when block
671
672 (F) You called C<continue>, but you're not inside a C<when>
673 or C<default> block.
674
675 =item Can't create pipe mailbox
676
677 (P) An error peculiar to VMS.  The process is suffering from exhausted
678 quotas or other plumbing problems.
679
680 =item Can't declare %s in "%s"
681
682 (F) Only scalar, array, and hash variables may be declared as "my", "our" or
683 "state" variables.  They must have ordinary identifiers as names.
684
685 =item Can't do inplace edit: %s is not a regular file
686
687 (S inplace) You tried to use the B<-i> switch on a special file, such as
688 a file in /dev, or a FIFO.  The file was ignored.
689
690 =item Can't do inplace edit on %s: %s
691
692 (S inplace) The creation of the new file failed for the indicated
693 reason.
694
695 =item Can't do inplace edit without backup
696
697 (F) You're on a system such as MS-DOS that gets confused if you try
698 reading from a deleted (but still opened) file.  You have to say
699 C<-i.bak>, or some such.
700
701 =item Can't do inplace edit: %s would not be unique
702
703 (S inplace) Your filesystem does not support filenames longer than 14
704 characters and Perl was unable to create a unique filename during
705 inplace editing with the B<-i> switch.  The file was ignored.
706
707 =item Can't do {n,m} with n > m in regex; marked by <-- HERE in m/%s/
708
709 (F) Minima must be less than or equal to maxima. If you really want your
710 regexp to match something 0 times, just put {0}. The <-- HERE shows in the
711 regular expression about where the problem was discovered. See L<perlre>.
712
713 =item Can't do waitpid with flags
714
715 (F) This machine doesn't have either waitpid() or wait4(), so only
716 waitpid() without flags is emulated.
717
718 =item Can't emulate -%s on #! line
719
720 (F) The #! line specifies a switch that doesn't make sense at this
721 point.  For example, it'd be kind of silly to put a B<-x> on the #!
722 line.
723
724 =item Can't %s %s-endian %ss on this platform
725
726 (F) Your platform's byte-order is neither big-endian nor little-endian,
727 or it has a very strange pointer size.  Packing and unpacking big- or
728 little-endian floating point values and pointers may not be possible.
729 See L<perlfunc/pack>.
730
731 =item Can't exec "%s": %s
732
733 (W exec) A system(), exec(), or piped open call could not execute the
734 named program for the indicated reason.  Typical reasons include: the
735 permissions were wrong on the file, the file wasn't found in
736 C<$ENV{PATH}>, the executable in question was compiled for another
737 architecture, or the #! line in a script points to an interpreter that
738 can't be run for similar reasons.  (Or maybe your system doesn't support
739 #! at all.)
740
741 =item Can't exec %s
742
743 (F) Perl was trying to execute the indicated program for you because
744 that's what the #! line said.  If that's not what you wanted, you may
745 need to mention "perl" on the #! line somewhere.
746
747 =item Can't execute %s
748
749 (F) You used the B<-S> switch, but the copies of the script to execute
750 found in the PATH did not have correct permissions.
751
752 =item Can't find an opnumber for "%s"
753
754 (F) A string of a form C<CORE::word> was given to prototype(), but there
755 is no builtin with the name C<word>.
756
757 =item Can't find %s character property "%s"
758
759 (F) You used C<\p{}> or C<\P{}> but the character property by that name
760 could not be found. Maybe you misspelled the name of the property?
761 See L<perluniprops/Properties accessible through \p{} and \P{}>
762 for a complete list of available properties.
763
764 =item Can't find label %s
765
766 (F) You said to goto a label that isn't mentioned anywhere that it's
767 possible for us to go to.  See L<perlfunc/goto>.
768
769 =item Can't find %s on PATH
770
771 (F) You used the B<-S> switch, but the script to execute could not be
772 found in the PATH.
773
774 =item Can't find %s on PATH, '.' not in PATH
775
776 (F) You used the B<-S> switch, but the script to execute could not be
777 found in the PATH, or at least not with the correct permissions.  The
778 script exists in the current directory, but PATH prohibits running it.
779
780 =item Can't find string terminator %s anywhere before EOF
781
782 (F) Perl strings can stretch over multiple lines.  This message means
783 that the closing delimiter was omitted.  Because bracketed quotes count
784 nesting levels, the following is missing its final parenthesis:
785
786     print q(The character '(' starts a side comment.);
787
788 If you're getting this error from a here-document, you may have included
789 unseen whitespace before or after your closing tag. A good programmer's
790 editor will have a way to help you find these characters.
791
792 =item Can't find Unicode property definition "%s"
793
794 (F) You may have tried to use C<\p> which means a Unicode
795 property (for example C<\p{Lu}> matches all uppercase
796 letters). If you did mean to use a Unicode property, see
797 L<perluniprops/Properties accessible through \p{} and \P{}>
798 for a complete list of available properties. If you didn't
799 mean to use a Unicode property, escape the C<\p>, either by C<\\p>
800 (just the C<\p>) or by C<\Q\p> (the rest of the string, or
801 until C<\E>).
802
803 =item Can't fork: %s
804
805 (F) A fatal error occurred while trying to fork while opening a
806 pipeline.
807
808 =item Can't fork, trying again in 5 seconds
809
810 (W pipe) A fork in a piped open failed with EAGAIN and will be retried
811 after five seconds.
812
813 =item Can't get filespec - stale stat buffer?
814
815 (S) A warning peculiar to VMS.  This arises because of the difference
816 between access checks under VMS and under the Unix model Perl assumes.
817 Under VMS, access checks are done by filename, rather than by bits in
818 the stat buffer, so that ACLs and other protections can be taken into
819 account.  Unfortunately, Perl assumes that the stat buffer contains all
820 the necessary information, and passes it, instead of the filespec, to
821 the access-checking routine.  It will try to retrieve the filespec using
822 the device name and FID present in the stat buffer, but this works only
823 if you haven't made a subsequent call to the CRTL stat() routine,
824 because the device name is overwritten with each call.  If this warning
825 appears, the name lookup failed, and the access-checking routine gave up
826 and returned FALSE, just to be conservative.  (Note: The access-checking
827 routine knows about the Perl C<stat> operator and file tests, so you
828 shouldn't ever see this warning in response to a Perl command; it arises
829 only if some internal code takes stat buffers lightly.)
830
831 =item Can't get pipe mailbox device name
832
833 (P) An error peculiar to VMS.  After creating a mailbox to act as a
834 pipe, Perl can't retrieve its name for later use.
835
836 =item Can't get SYSGEN parameter value for MAXBUF
837
838 (P) An error peculiar to VMS.  Perl asked $GETSYI how big you want your
839 mailbox buffers to be, and didn't get an answer.
840
841 =item Can't "goto" into the middle of a foreach loop
842
843 (F) A "goto" statement was executed to jump into the middle of a foreach
844 loop.  You can't get there from here.  See L<perlfunc/goto>.
845
846 =item Can't "goto" out of a pseudo block
847
848 (F) A "goto" statement was executed to jump out of what might look like
849 a block, except that it isn't a proper block.  This usually occurs if
850 you tried to jump out of a sort() block or subroutine, which is a no-no.
851 See L<perlfunc/goto>.
852
853 =item Can't goto subroutine from a sort sub (or similar callback)
854
855 (F) The "goto subroutine" call can't be used to jump out of the
856 comparison sub for a sort(), or from a similar callback (such
857 as the reduce() function in List::Util).
858
859 =item Can't goto subroutine from an eval-%s
860
861 (F) The "goto subroutine" call can't be used to jump out of an eval
862 "string" or block.
863
864 =item Can't goto subroutine outside a subroutine
865
866 (F) The deeply magical "goto subroutine" call can only replace one
867 subroutine call for another.  It can't manufacture one out of whole
868 cloth.  In general you should be calling it out of only an AUTOLOAD
869 routine anyway.  See L<perlfunc/goto>.
870
871 =item Can't ignore signal CHLD, forcing to default
872
873 (W signal) Perl has detected that it is being run with the SIGCHLD
874 signal (sometimes known as SIGCLD) disabled.  Since disabling this
875 signal will interfere with proper determination of exit status of child
876 processes, Perl has reset the signal to its default value.  This
877 situation typically indicates that the parent program under which Perl
878 may be running (e.g. cron) is being very careless.
879
880 =item Can't kill a non-numeric process ID
881
882 (F) Process identifiers must be (signed) integers.  It is a fatal error to
883 attempt to kill() an undefined, empty-string or otherwise non-numeric
884 process identifier.
885
886 =item Can't "last" outside a loop block
887
888 (F) A "last" statement was executed to break out of the current block,
889 except that there's this itty bitty problem called there isn't a current
890 block.  Note that an "if" or "else" block doesn't count as a "loopish"
891 block, as doesn't a block given to sort(), map() or grep().  You can
892 usually double the curlies to get the same effect though, because the
893 inner curlies will be considered a block that loops once.  See
894 L<perlfunc/last>.
895
896 =item Can't linearize anonymous symbol table
897
898 (F) Perl tried to calculate the method resolution order (MRO) of a
899 package, but failed because the package stash has no name.
900
901 =item Can't load '%s' for module %s
902
903 (F) The module you tried to load failed to load a dynamic extension. This
904 may either mean that you upgraded your version of perl to one that is
905 incompatible with your old dynamic extensions (which is known to happen
906 between major versions of perl), or (more likely) that your dynamic
907 extension was built against an older version of the library that is
908 installed on your system. You may need to rebuild your old dynamic
909 extensions.
910
911 =item Can't localize lexical variable %s
912
913 (F) You used local on a variable name that was previously declared as a
914 lexical variable using "my" or "state".  This is not allowed.  If you want to
915 localize a package variable of the same name, qualify it with the
916 package name.
917
918 =item Can't localize through a reference
919
920 (F) You said something like C<local $$ref>, which Perl can't currently
921 handle, because when it goes to restore the old value of whatever $ref
922 pointed to after the scope of the local() is finished, it can't be sure
923 that $ref will still be a reference.
924
925 =item Can't locate %s
926
927 (F) You said to C<do> (or C<require>, or C<use>) a file that couldn't be
928 found. Perl looks for the file in all the locations mentioned in @INC,
929 unless the file name included the full path to the file.  Perhaps you
930 need to set the PERL5LIB or PERL5OPT environment variable to say where
931 the extra library is, or maybe the script needs to add the library name
932 to @INC.  Or maybe you just misspelled the name of the file.  See
933 L<perlfunc/require> and L<lib>.
934
935 =item Can't locate auto/%s.al in @INC
936
937 (F) A function (or method) was called in a package which allows
938 autoload, but there is no function to autoload.  Most probable causes
939 are a misprint in a function/method name or a failure to C<AutoSplit>
940 the file, say, by doing C<make install>.
941
942 =item Can't locate loadable object for module %s in @INC
943
944 (F) The module you loaded is trying to load an external library, like
945 for example, C<foo.so> or C<bar.dll>, but the L<DynaLoader> module was
946 unable to locate this library.  See L<DynaLoader>.
947
948 =item Can't locate object method "%s" via package "%s"
949
950 (F) You called a method correctly, and it correctly indicated a package
951 functioning as a class, but that package doesn't define that particular
952 method, nor does any of its base classes.  See L<perlobj>.
953
954 =item Can't locate package %s for @%s::ISA
955
956 (W syntax) The @ISA array contained the name of another package that
957 doesn't seem to exist.
958
959 =item Can't locate PerlIO%s
960
961 (F) You tried to use in open() a PerlIO layer that does not exist,
962 e.g. open(FH, ">:nosuchlayer", "somefile").
963
964 =item Can't make list assignment to \%ENV on this system
965
966 (F) List assignment to %ENV is not supported on some systems, notably
967 VMS.
968
969 =item Can't modify %s in %s
970
971 (F) You aren't allowed to assign to the item indicated, or otherwise try
972 to change it, such as with an auto-increment.
973
974 =item Can't modify nonexistent substring
975
976 (P) The internal routine that does assignment to a substr() was handed
977 a NULL.
978
979 =item Can't modify non-lvalue subroutine call
980
981 (F) Subroutines meant to be used in lvalue context should be declared as
982 such.  See L<perlsub/"Lvalue subroutines">.
983
984 =item Can't msgrcv to read-only var
985
986 (F) The target of a msgrcv must be modifiable to be used as a receive
987 buffer.
988
989 =item Can't "next" outside a loop block
990
991 (F) A "next" statement was executed to reiterate the current block, but
992 there isn't a current block.  Note that an "if" or "else" block doesn't
993 count as a "loopish" block, as doesn't a block given to sort(), map() or
994 grep().  You can usually double the curlies to get the same effect
995 though, because the inner curlies will be considered a block that loops
996 once.  See L<perlfunc/next>.
997
998 =item Can't open %s: %s
999
1000 (S inplace) The implicit opening of a file through use of the C<< <> >>
1001 filehandle, either implicitly under the C<-n> or C<-p> command-line
1002 switches, or explicitly, failed for the indicated reason.  Usually this
1003 is because you don't have read permission for a file which you named on
1004 the command line.
1005
1006 =item Can't open a reference
1007
1008 (W io) You tried to open a scalar reference for reading or writing,
1009 using the 3-arg open() syntax:
1010
1011     open FH, '>', $ref;
1012
1013 but your version of perl is compiled without perlio, and this form of
1014 open is not supported.
1015
1016 =item Can't open bidirectional pipe
1017
1018 (W pipe) You tried to say C<open(CMD, "|cmd|")>, which is not supported.
1019 You can try any of several modules in the Perl library to do this, such
1020 as IPC::Open2.  Alternately, direct the pipe's output to a file using
1021 ">", and then read it in under a different file handle.
1022
1023 =item Can't open error file %s as stderr
1024
1025 (F) An error peculiar to VMS.  Perl does its own command line
1026 redirection, and couldn't open the file specified after '2>' or '2>>' on
1027 the command line for writing.
1028
1029 =item Can't open input file %s as stdin
1030
1031 (F) An error peculiar to VMS.  Perl does its own command line
1032 redirection, and couldn't open the file specified after '<' on the
1033 command line for reading.
1034
1035 =item Can't open output file %s as stdout
1036
1037 (F) An error peculiar to VMS.  Perl does its own command line
1038 redirection, and couldn't open the file specified after '>' or '>>' on
1039 the command line for writing.
1040
1041 =item Can't open output pipe (name: %s)
1042
1043 (P) An error peculiar to VMS.  Perl does its own command line
1044 redirection, and couldn't open the pipe into which to send data destined
1045 for stdout.
1046
1047 =item Can't open perl script%s
1048
1049 (F) The script you specified can't be opened for the indicated reason.
1050
1051 If you're debugging a script that uses #!, and normally relies on the
1052 shell's $PATH search, the -S option causes perl to do that search, so
1053 you don't have to type the path or C<`which $scriptname`>.
1054
1055 =item Can't read CRTL environ
1056
1057 (S) A warning peculiar to VMS.  Perl tried to read an element of %ENV
1058 from the CRTL's internal environment array and discovered the array was
1059 missing.  You need to figure out where your CRTL misplaced its environ
1060 or define F<PERL_ENV_TABLES> (see L<perlvms>) so that environ is not
1061 searched.
1062
1063 =item Can't "redo" outside a loop block
1064
1065 (F) A "redo" statement was executed to restart the current block, but
1066 there isn't a current block.  Note that an "if" or "else" block doesn't
1067 count as a "loopish" block, as doesn't a block given to sort(), map()
1068 or grep().  You can usually double the curlies to get the same effect
1069 though, because the inner curlies will be considered a block that
1070 loops once.  See L<perlfunc/redo>.
1071
1072 =item Can't remove %s: %s, skipping file
1073
1074 (S inplace) You requested an inplace edit without creating a backup
1075 file.  Perl was unable to remove the original file to replace it with
1076 the modified file.  The file was left unmodified.
1077
1078 =item Can't rename %s to %s: %s, skipping file
1079
1080 (S inplace) The rename done by the B<-i> switch failed for some reason,
1081 probably because you don't have write permission to the directory.
1082
1083 =item Can't reopen input pipe (name: %s) in binary mode
1084
1085 (P) An error peculiar to VMS.  Perl thought stdin was a pipe, and tried
1086 to reopen it to accept binary data.  Alas, it failed.
1087
1088 =item Can't resolve method "%s" overloading "%s" in package "%s"
1089
1090 (F|P) Error resolving overloading specified by a method name (as opposed
1091 to a subroutine reference): no such method callable via the package. If
1092 the method name is C<???>, this is an internal error.
1093
1094 =item Can't return %s from lvalue subroutine
1095
1096 (F) Perl detected an attempt to return illegal lvalues (such as
1097 temporary or readonly values) from a subroutine used as an lvalue.  This
1098 is not allowed.
1099
1100 =item Can't return outside a subroutine
1101
1102 (F) The return statement was executed in mainline code, that is, where
1103 there was no subroutine call to return out of.  See L<perlsub>.
1104
1105 =item Can't return %s to lvalue scalar context
1106
1107 (F) You tried to return a complete array or hash from an lvalue subroutine,
1108 but you called the subroutine in a way that made Perl think you meant
1109 to return only one value. You probably meant to write parentheses around
1110 the call to the subroutine, which tell Perl that the call should be in
1111 list context.
1112
1113 =item Can't stat script "%s"
1114
1115 (P) For some reason you can't fstat() the script even though you have it
1116 open already.  Bizarre.
1117
1118 =item Can't take log of %g
1119
1120 (F) For ordinary real numbers, you can't take the logarithm of a
1121 negative number or zero. There's a Math::Complex package that comes
1122 standard with Perl, though, if you really want to do that for the
1123 negative numbers.
1124
1125 =item Can't take sqrt of %g
1126
1127 (F) For ordinary real numbers, you can't take the square root of a
1128 negative number.  There's a Math::Complex package that comes standard
1129 with Perl, though, if you really want to do that.
1130
1131 =item Can't undef active subroutine
1132
1133 (F) You can't undefine a routine that's currently running.  You can,
1134 however, redefine it while it's running, and you can even undef the
1135 redefined subroutine while the old routine is running.  Go figure.
1136
1137 =item Can't upgrade %s (%d) to %d
1138
1139 (P) The internal sv_upgrade routine adds "members" to an SV, making it
1140 into a more specialized kind of SV.  The top several SV types are so
1141 specialized, however, that they cannot be interconverted.  This message
1142 indicates that such a conversion was attempted.
1143
1144 =item Can't use anonymous symbol table for method lookup
1145
1146 (F) The internal routine that does method lookup was handed a symbol
1147 table that doesn't have a name.  Symbol tables can become anonymous
1148 for example by undefining stashes: C<undef %Some::Package::>.
1149
1150 =item Can't use an undefined value as %s reference
1151
1152 (F) A value used as either a hard reference or a symbolic reference must
1153 be a defined value.  This helps to delurk some insidious errors.
1154
1155 =item Can't use bareword ("%s") as %s ref while "strict refs" in use
1156
1157 (F) Only hard references are allowed by "strict refs".  Symbolic
1158 references are disallowed.  See L<perlref>.
1159
1160 =item Can't use %! because Errno.pm is not available
1161
1162 (F) The first time the %! hash is used, perl automatically loads the
1163 Errno.pm module. The Errno module is expected to tie the %! hash to
1164 provide symbolic names for C<$!> errno values.
1165
1166 =item Can't use both '<' and '>' after type '%c' in %s
1167
1168 (F) A type cannot be forced to have both big-endian and little-endian
1169 byte-order at the same time, so this combination of modifiers is not
1170 allowed.  See L<perlfunc/pack>.
1171
1172 =item Can't use %s for loop variable
1173
1174 (F) Only a simple scalar variable may be used as a loop variable on a
1175 foreach.
1176
1177 =item Can't use global %s in "%s"
1178
1179 (F) You tried to declare a magical variable as a lexical variable.  This
1180 is not allowed, because the magic can be tied to only one location
1181 (namely the global variable) and it would be incredibly confusing to
1182 have variables in your program that looked like magical variables but
1183 weren't.
1184
1185 =item Can't use '%c' in a group with different byte-order in %s
1186
1187 (F) You attempted to force a different byte-order on a type
1188 that is already inside a group with a byte-order modifier.
1189 For example you cannot force little-endianness on a type that
1190 is inside a big-endian group.
1191
1192 =item Can't use "my %s" in sort comparison
1193
1194 (F) The global variables $a and $b are reserved for sort comparisons.
1195 You mentioned $a or $b in the same line as the <=> or cmp operator,
1196 and the variable had earlier been declared as a lexical variable.
1197 Either qualify the sort variable with the package name, or rename the
1198 lexical variable.
1199
1200 =item Can't use %s ref as %s ref
1201
1202 (F) You've mixed up your reference types.  You have to dereference a
1203 reference of the type needed.  You can use the ref() function to
1204 test the type of the reference, if need be.
1205
1206 =item Can't use string ("%s") as %s ref while "strict refs" in use
1207
1208 (F) Only hard references are allowed by "strict refs".  Symbolic
1209 references are disallowed.  See L<perlref>.
1210
1211 =item Can't use subscript on %s
1212
1213 (F) The compiler tried to interpret a bracketed expression as a
1214 subscript.  But to the left of the brackets was an expression that
1215 didn't look like a hash or array reference, or anything else subscriptable.
1216
1217 =item Can't use \%c to mean $%c in expression
1218
1219 (W syntax) In an ordinary expression, backslash is a unary operator that
1220 creates a reference to its argument.  The use of backslash to indicate a
1221 backreference to a matched substring is valid only as part of a regular
1222 expression pattern.  Trying to do this in ordinary Perl code produces a
1223 value that prints out looking like SCALAR(0xdecaf).  Use the $1 form
1224 instead.
1225
1226 =item Can't use "when" outside a topicalizer
1227
1228 (F) You have used a when() block that is neither inside a C<foreach>
1229 loop nor a C<given> block. (Note that this error is issued on exit
1230 from the C<when> block, so you won't get the error if the match fails,
1231 or if you use an explicit C<continue>.)
1232
1233 =item Can't weaken a nonreference
1234
1235 (F) You attempted to weaken something that was not a reference.  Only
1236 references can be weakened.
1237
1238 =item Can't x= to read-only value
1239
1240 (F) You tried to repeat a constant value (often the undefined value)
1241 with an assignment operator, which implies modifying the value itself.
1242 Perhaps you need to copy the value to a temporary, and repeat that.
1243
1244 =item Character following "\c" must be ASCII
1245
1246 (F|W deprecated, syntax) In C<\cI<X>>, I<X> must be an ASCII character.
1247 It is planned to make this fatal in all instances in Perl 5.16.  In the
1248 cases where it isn't fatal, the character this evaluates to is
1249 derived by exclusive or'ing the code point of this character with 0x40.
1250
1251 Note that non-alphabetic ASCII characters are discouraged here as well.
1252
1253 =item Character in 'C' format wrapped in pack
1254
1255 (W pack) You said
1256
1257     pack("C", $x)
1258
1259 where $x is either less than 0 or more than 255; the C<"C"> format is
1260 only for encoding native operating system characters (ASCII, EBCDIC,
1261 and so on) and not for Unicode characters, so Perl behaved as if you meant
1262
1263     pack("C", $x & 255)
1264
1265 If you actually want to pack Unicode codepoints, use the C<"U"> format
1266 instead.
1267
1268 =item Character in 'W' format wrapped in pack
1269
1270 (W pack) You said
1271
1272     pack("U0W", $x)
1273
1274 where $x is either less than 0 or more than 255. However, C<U0>-mode expects
1275 all values to fall in the interval [0, 255], so Perl behaved as if you
1276 meant:
1277
1278     pack("U0W", $x & 255)
1279
1280 =item Character in 'c' format wrapped in pack
1281
1282 (W pack) You said
1283
1284     pack("c", $x)
1285
1286 where $x is either less than -128 or more than 127; the C<"c"> format
1287 is only for encoding native operating system characters (ASCII, EBCDIC,
1288 and so on) and not for Unicode characters, so Perl behaved as if you meant
1289
1290     pack("c", $x & 255);
1291
1292 If you actually want to pack Unicode codepoints, use the C<"U"> format
1293 instead.
1294
1295 =item Character in '%c' format wrapped in unpack
1296
1297 (W unpack) You tried something like
1298
1299    unpack("H", "\x{2a1}")
1300
1301 where the format expects to process a byte (a character with a value
1302 below 256), but a higher value was provided instead. Perl uses the value
1303 modulus 256 instead, as if you had provided:
1304
1305    unpack("H", "\x{a1}")
1306
1307 =item Character(s) in '%c' format wrapped in pack
1308
1309 (W pack) You tried something like
1310
1311    pack("u", "\x{1f3}b")
1312
1313 where the format expects to process a sequence of bytes (character with a
1314 value below 256), but some of the characters had a higher value. Perl
1315 uses the character values modulus 256 instead, as if you had provided:
1316
1317    pack("u", "\x{f3}b")
1318
1319 =item Character(s) in '%c' format wrapped in unpack
1320
1321 (W unpack) You tried something like
1322
1323    unpack("s", "\x{1f3}b")
1324
1325 where the format expects to process a sequence of bytes (character with a
1326 value below 256), but some of the characters had a higher value. Perl
1327 uses the character values modulus 256 instead, as if you had provided:
1328
1329    unpack("s", "\x{f3}b")
1330
1331 =item "\c{" is deprecated and is more clearly written as ";"
1332
1333 (D deprecated, syntax) The C<\cI<X>> construct is intended to be a way
1334 to specify non-printable characters.  You used it with a "{" which
1335 evaluates to ";", which is printable.  It is planned to remove the
1336 ability to specify a semi-colon this way in Perl 5.16.  Just use a
1337 semi-colon or a backslash-semi-colon without the "\c".
1338
1339 =item "\c%c" is more clearly written simply as "%s"
1340
1341 (W syntax) The C<\cI<X>> construct is intended to be a way to specify
1342 non-printable characters.  You used it for a printable one, which is better
1343 written as simply itself, perhaps preceded by a backslash for non-word
1344 characters.
1345
1346 =item close() on unopened filehandle %s
1347
1348 (W unopened) You tried to close a filehandle that was never opened.
1349
1350 =item closedir() attempted on invalid dirhandle %s
1351
1352 (W io) The dirhandle you tried to close is either closed or not really
1353 a dirhandle.  Check your control flow.
1354
1355 =item Closure prototype called
1356
1357 (F) If a closure has attributes, the subroutine passed to an attribute
1358 handler is the prototype that is cloned when a new closure is created.
1359 This subroutine cannot be called.
1360
1361 =item Code missing after '/'
1362
1363 (F) You had a (sub-)template that ends with a '/'. There must be another
1364 template code following the slash. See L<perlfunc/pack>.
1365
1366 =item Code point 0x%X is not Unicode, may not be portable
1367
1368 =item Code point 0x%X is not Unicode, no properties match it; all inverse properties do
1369
1370 (W utf8) You had a code point above the Unicode maximum of U+10FFFF.
1371
1372 Perl allows strings to contain a superset of Unicode code
1373 points, up to the limit of what is storable in an unsigned integer on
1374 your system, but these may not be accepted by other languages/systems.
1375 At one time, it was legal in some standards to have code points up to
1376 0x7FFF_FFFF, but not higher.  Code points above 0xFFFF_FFFF require
1377 larger than a 32 bit word.
1378
1379 None of the Unicode or Perl-defined properties will match a non-Unicode
1380 code point.  For example,
1381
1382     chr(0x7FF_FFFF) =~ /\p{Any}/
1383
1384 will not match, because the code point is not in Unicode.  But
1385
1386     chr(0x7FF_FFFF) =~ /\P{Any}/
1387
1388 will match.
1389
1390 =item %s: Command not found
1391
1392 (A) You've accidentally run your script through B<csh> instead of Perl.
1393 Check the #! line, or manually feed your script into Perl yourself.
1394
1395 =item Compilation failed in require
1396
1397 (F) Perl could not compile a file specified in a C<require> statement.
1398 Perl uses this generic message when none of the errors that it
1399 encountered were severe enough to halt compilation immediately.
1400
1401 =item Complex regular subexpression recursion limit (%d) exceeded
1402
1403 (W regexp) The regular expression engine uses recursion in complex
1404 situations where back-tracking is required.  Recursion depth is limited
1405 to 32766, or perhaps less in architectures where the stack cannot grow
1406 arbitrarily.  ("Simple" and "medium" situations are handled without
1407 recursion and are not subject to a limit.)  Try shortening the string
1408 under examination; looping in Perl code (e.g. with C<while>) rather than
1409 in the regular expression engine; or rewriting the regular expression so
1410 that it is simpler or backtracks less.  (See L<perlfaq2> for information
1411 on I<Mastering Regular Expressions>.)
1412
1413 =item cond_broadcast() called on unlocked variable
1414
1415 (W threads) Within a thread-enabled program, you tried to call
1416 cond_broadcast() on a variable which wasn't locked. The cond_broadcast()
1417 function is used to wake up another thread that is waiting in a
1418 cond_wait(). To ensure that the signal isn't sent before the other thread
1419 has a chance to enter the wait, it is usual for the signaling thread
1420 first to wait for a lock on variable. This lock attempt will only succeed
1421 after the other thread has entered cond_wait() and thus relinquished the
1422 lock.
1423
1424 =item cond_signal() called on unlocked variable
1425
1426 (W threads) Within a thread-enabled program, you tried to call
1427 cond_signal() on a variable which wasn't locked. The cond_signal()
1428 function is used to wake up another thread that is waiting in a
1429 cond_wait(). To ensure that the signal isn't sent before the other thread
1430 has a chance to enter the wait, it is usual for the signaling thread
1431 first to wait for a lock on variable. This lock attempt will only succeed
1432 after the other thread has entered cond_wait() and thus relinquished the
1433 lock.
1434
1435 =item connect() on closed socket %s
1436
1437 (W closed) You tried to do a connect on a closed socket.  Did you forget
1438 to check the return value of your socket() call?  See
1439 L<perlfunc/connect>.
1440
1441 =item Constant(%s)%s: %s
1442
1443 (F) The parser found inconsistencies either while attempting to define
1444 an overloaded constant, or when trying to find the character name
1445 specified in the C<\N{...}> escape.  Perhaps you forgot to load the
1446 corresponding C<overload> or C<charnames> pragma?  See L<charnames> and
1447 L<overload>.
1448
1449 =item Constant(%s)%s: %s in regex; marked by <-- HERE in m/%s/
1450
1451 (F) The parser found inconsistencies while attempting to find
1452 the character name specified in the C<\N{...}> escape.  Perhaps you
1453 forgot to load the corresponding C<charnames> pragma?
1454 See L<charnames>.
1455
1456
1457 =item Constant is not %s reference
1458
1459 (F) A constant value (perhaps declared using the C<use constant> pragma)
1460 is being dereferenced, but it amounts to the wrong type of reference.
1461 The message indicates the type of reference that was expected. This
1462 usually indicates a syntax error in dereferencing the constant value.
1463 See L<perlsub/"Constant Functions"> and L<constant>.
1464
1465 =item Constant subroutine %s redefined
1466
1467 (S) You redefined a subroutine which had previously been
1468 eligible for inlining.  See L<perlsub/"Constant Functions"> for
1469 commentary and workarounds.
1470
1471 =item Constant subroutine %s undefined
1472
1473 (W misc) You undefined a subroutine which had previously been eligible
1474 for inlining.  See L<perlsub/"Constant Functions"> for commentary and
1475 workarounds.
1476
1477 =item Copy method did not return a reference
1478
1479 (F) The method which overloads "=" is buggy. See
1480 L<overload/Copy Constructor>.
1481
1482 =item CORE::%s is not a keyword
1483
1484 (F) The CORE:: namespace is reserved for Perl keywords.
1485
1486 =item corrupted regexp pointers
1487
1488 (P) The regular expression engine got confused by what the regular
1489 expression compiler gave it.
1490
1491 =item corrupted regexp program
1492
1493 (P) The regular expression engine got passed a regexp program without a
1494 valid magic number.
1495
1496 =item Corrupt malloc ptr 0x%x at 0x%x
1497
1498 (P) The malloc package that comes with Perl had an internal failure.
1499
1500 =item Count after length/code in unpack
1501
1502 (F) You had an unpack template indicating a counted-length string, but
1503 you have also specified an explicit size for the string.  See
1504 L<perlfunc/pack>.
1505
1506 =item Deep recursion on subroutine "%s"
1507
1508 (W recursion) This subroutine has called itself (directly or indirectly)
1509 100 times more than it has returned.  This probably indicates an
1510 infinite recursion, unless you're writing strange benchmark programs, in
1511 which case it indicates something else.
1512
1513 This threshold can be changed from 100, by recompiling the F<perl> binary,
1514 setting the C pre-processor macro C<PERL_SUB_DEPTH_WARN> to the desired value.
1515
1516 =item defined(@array) is deprecated
1517
1518 (D deprecated) defined() is not usually useful on arrays because it
1519 checks for an undefined I<scalar> value.  If you want to see if the
1520 array is empty, just use C<if (@array) { # not empty }> for example.
1521
1522 =item defined(%hash) is deprecated
1523
1524 (D deprecated) defined() is not usually useful on hashes because it
1525 checks for an undefined I<scalar> value.  If you want to see if the hash
1526 is empty, just use C<if (%hash) { # not empty }> for example.
1527
1528 =item %s defines neither package nor VERSION--version check failed
1529
1530 (F) You said something like "use Module 42" but in the Module file
1531 there are neither package declarations nor a C<$VERSION>.
1532
1533 =item Delimiter for here document is too long
1534
1535 (F) In a here document construct like C<<<FOO>, the label C<FOO> is too
1536 long for Perl to handle.  You have to be seriously twisted to write code
1537 that triggers this error.
1538
1539 =item Deprecated character in \N{...}; marked by <-- HERE  in \N{%s<-- HERE %s
1540
1541 (D deprecated) Just about anything is legal for the C<...> in C<\N{...}>.
1542 But starting in 5.12, non-reasonable ones that don't look like names
1543 are deprecated.  A reasonable name begins with an alphabetic character
1544 and continues with any combination of alphanumerics, dashes, spaces,
1545 parentheses or colons.
1546
1547 =item Deprecated use of my() in false conditional
1548
1549 (D deprecated) You used a declaration similar to C<my $x if 0>.
1550 There has been a long-standing bug in Perl that causes a lexical variable
1551 not to be cleared at scope exit when its declaration includes a false
1552 conditional. Some people have exploited this bug to achieve a kind of
1553 static variable. Since we intend to fix this bug, we don't want people
1554 relying on this behavior. You can achieve a similar static effect by
1555 declaring the variable in a separate block outside the function, eg
1556
1557     sub f { my $x if 0; return $x++ }
1558
1559 becomes
1560
1561     { my $x; sub f { return $x++ } }
1562
1563 Beginning with perl 5.9.4, you can also use C<state> variables to
1564 have lexicals that are initialized only once (see L<feature>):
1565
1566     sub f { state $x; return $x++ }
1567
1568 =item DESTROY created new reference to dead object '%s'
1569
1570 (F) A DESTROY() method created a new reference to the object which is
1571 just being DESTROYed. Perl is confused, and prefers to abort rather than
1572 to create a dangling reference.
1573
1574 =item Did not produce a valid header
1575
1576 See Server error.
1577
1578 =item %s did not return a true value
1579
1580 (F) A required (or used) file must return a true value to indicate that
1581 it compiled correctly and ran its initialization code correctly.  It's
1582 traditional to end such a file with a "1;", though any true value would
1583 do.  See L<perlfunc/require>.
1584
1585 =item (Did you mean &%s instead?)
1586
1587 (W misc) You probably referred to an imported subroutine &FOO as $FOO or
1588 some such.
1589
1590 =item (Did you mean "local" instead of "our"?)
1591
1592 (W misc) Remember that "our" does not localize the declared global
1593 variable.  You have declared it again in the same lexical scope, which
1594 seems superfluous.
1595
1596 =item (Did you mean $ or @ instead of %?)
1597
1598 (W) You probably said %hash{$key} when you meant $hash{$key} or
1599 @hash{@keys}.  On the other hand, maybe you just meant %hash and got
1600 carried away.
1601
1602 =item Died
1603
1604 (F) You passed die() an empty string (the equivalent of C<die "">) or
1605 you called it with no args and C<$@> was empty.
1606
1607 =item Document contains no data
1608
1609 See Server error.
1610
1611 =item %s does not define %s::VERSION--version check failed
1612
1613 (F) You said something like "use Module 42" but the Module did not
1614 define a C<$VERSION.>
1615
1616 =item '/' does not take a repeat count
1617
1618 (F) You cannot put a repeat count of any kind right after the '/' code.
1619 See L<perlfunc/pack>.
1620
1621 =item Don't know how to handle magic of type '%s'
1622
1623 (P) The internal handling of magical variables has been cursed.
1624
1625 =item do_study: out of memory
1626
1627 (P) This should have been caught by safemalloc() instead.
1628
1629 =item (Do you need to predeclare %s?)
1630
1631 (S syntax) This is an educated guess made in conjunction with the message
1632 "%s found where operator expected".  It often means a subroutine or module
1633 name is being referenced that hasn't been declared yet.  This may be
1634 because of ordering problems in your file, or because of a missing
1635 "sub", "package", "require", or "use" statement.  If you're referencing
1636 something that isn't defined yet, you don't actually have to define the
1637 subroutine or package before the current location.  You can use an empty
1638 "sub foo;" or "package FOO;" to enter a "forward" declaration.
1639
1640 =item dump() better written as CORE::dump()
1641
1642 (W misc) You used the obsolescent C<dump()> built-in function, without fully
1643 qualifying it as C<CORE::dump()>.  Maybe it's a typo.  See L<perlfunc/dump>.
1644
1645 =item dump is not supported
1646
1647 (F) Your machine doesn't support dump/undump.
1648
1649 =item Duplicate free() ignored
1650
1651 (S malloc) An internal routine called free() on something that had
1652 already been freed.
1653
1654 =item Duplicate modifier '%c' after '%c' in %s
1655
1656 (W) You have applied the same modifier more than once after a type
1657 in a pack template.  See L<perlfunc/pack>.
1658
1659 =item elseif should be elsif
1660
1661 (S syntax) There is no keyword "elseif" in Perl because Larry thinks it's
1662 ugly. Your code will be interpreted as an attempt to call a method named
1663 "elseif" for the class returned by the following block.  This is
1664 unlikely to be what you want.
1665
1666 =item Empty %s
1667
1668 (F) C<\p> and C<\P> are used to introduce a named Unicode property, as
1669 described in L<perlunicode> and L<perlre>. You used C<\p> or C<\P> in
1670 a regular expression without specifying the property name.
1671
1672 =item entering effective %s failed
1673
1674 (F) While under the C<use filetest> pragma, switching the real and
1675 effective uids or gids failed.
1676
1677 =item %ENV is aliased to %s
1678
1679 (F) You're running under taint mode, and the C<%ENV> variable has been
1680 aliased to another hash, so it doesn't reflect anymore the state of the
1681 program's environment. This is potentially insecure.
1682
1683 =item Error converting file specification %s
1684
1685 (F) An error peculiar to VMS.  Because Perl may have to deal with file
1686 specifications in either VMS or Unix syntax, it converts them to a
1687 single form when it must operate on them directly.  Either you've passed
1688 an invalid file specification to Perl, or you've found a case the
1689 conversion routines don't handle.  Drat.
1690
1691 =item %s: Eval-group in insecure regular expression
1692
1693 (F) Perl detected tainted data when trying to compile a regular
1694 expression that contains the C<(?{ ... })> zero-width assertion, which
1695 is unsafe.  See L<perlre/(?{ code })>, and L<perlsec>.
1696
1697 =item %s: Eval-group not allowed at runtime, use re 'eval'
1698
1699 (F) Perl tried to compile a regular expression containing the
1700 C<(?{ ... })> zero-width assertion at run time, as it would when the
1701 pattern contains interpolated values.  Since that is a security risk,
1702 it is not allowed.  If you insist, you may still do this by using the
1703 C<re 'eval'> pragma or by explicitly building the pattern from an
1704 interpolated string at run time and using that in an eval().  See
1705 L<perlre/(?{ code })>.
1706
1707 =item %s: Eval-group not allowed, use re 'eval'
1708
1709 (F) A regular expression contained the C<(?{ ... })> zero-width
1710 assertion, but that construct is only allowed when the C<use re 'eval'>
1711 pragma is in effect.  See L<perlre/(?{ code })>.
1712
1713 =item EVAL without pos change exceeded limit in regex; marked by <-- HERE in m/%s/
1714
1715 (F) You used a pattern that nested too many EVAL calls without consuming
1716 any text. Restructure the pattern so that text is consumed.
1717
1718 The <-- HERE shows in the regular expression about where the problem was
1719 discovered.
1720
1721 =item Excessively long <> operator
1722
1723 (F) The contents of a <> operator may not exceed the maximum size of a
1724 Perl identifier.  If you're just trying to glob a long list of
1725 filenames, try using the glob() operator, or put the filenames into a
1726 variable and glob that.
1727
1728 =item exec? I'm not *that* kind of operating system
1729
1730 (F) The C<exec> function is not implemented on some systems, e.g., Symbian
1731 OS. See L<perlport>.
1732
1733 =item Execution of %s aborted due to compilation errors.
1734
1735 (F) The final summary message when a Perl compilation fails.
1736
1737 =item Exiting eval via %s
1738
1739 (W exiting) You are exiting an eval by unconventional means, such as a
1740 goto, or a loop control statement.
1741
1742 =item Exiting format via %s
1743
1744 (W exiting) You are exiting a format by unconventional means, such as a
1745 goto, or a loop control statement.
1746
1747 =item Exiting pseudo-block via %s
1748
1749 (W exiting) You are exiting a rather special block construct (like a
1750 sort block or subroutine) by unconventional means, such as a goto, or a
1751 loop control statement.  See L<perlfunc/sort>.
1752
1753 =item Exiting subroutine via %s
1754
1755 (W exiting) You are exiting a subroutine by unconventional means, such
1756 as a goto, or a loop control statement.
1757
1758 =item Exiting substitution via %s
1759
1760 (W exiting) You are exiting a substitution by unconventional means, such
1761 as a return, a goto, or a loop control statement.
1762
1763 =item Explicit blessing to '' (assuming package main)
1764
1765 (W misc) You are blessing a reference to a zero length string.  This has
1766 the effect of blessing the reference into the package main.  This is
1767 usually not what you want.  Consider providing a default target package,
1768 e.g. bless($ref, $p || 'MyPackage');
1769
1770 =item %s: Expression syntax
1771
1772 (A) You've accidentally run your script through B<csh> instead of Perl.
1773 Check the #! line, or manually feed your script into Perl yourself.
1774
1775 =item %s failed--call queue aborted
1776
1777 (F) An untrapped exception was raised while executing a UNITCHECK,
1778 CHECK, INIT, or END subroutine.  Processing of the remainder of the
1779 queue of such routines has been prematurely ended.
1780
1781 =item False [] range "%s" in regex; marked by <-- HERE in m/%s/
1782
1783 (W regexp) A character class range must start and end at a literal
1784 character, not another character class like C<\d> or C<[:alpha:]>.  The "-"
1785 in your false range is interpreted as a literal "-".  Consider quoting the
1786 "-", "\-".  The <-- HERE shows in the regular expression about where the
1787 problem was discovered.  See L<perlre>.
1788
1789 =item Fatal VMS error (status=%d) at %s, line %d
1790
1791 (P) An error peculiar to VMS.  Something untoward happened in a VMS
1792 system service or RTL routine; Perl's exit status should provide more
1793 details.  The filename in "at %s" and the line number in "line %d" tell
1794 you which section of the Perl source code is distressed.
1795
1796 =item fcntl is not implemented
1797
1798 (F) Your machine apparently doesn't implement fcntl().  What is this, a
1799 PDP-11 or something?
1800
1801 =item FETCHSIZE returned a negative value
1802
1803 (F) A tied array claimed to have a negative number of elements, which
1804 is not possible.
1805
1806 =item Field too wide in 'u' format in pack
1807
1808 (W pack) Each line in an uuencoded string start with a length indicator
1809 which can't encode values above 63. So there is no point in asking for
1810 a line length bigger than that. Perl will behave as if you specified
1811 C<u63> as the format.
1812
1813 =item Filehandle %s opened only for input
1814
1815 (W io) You tried to write on a read-only filehandle.  If you intended
1816 it to be a read-write filehandle, you needed to open it with "+<" or
1817 "+>" or "+>>" instead of with "<" or nothing.  If you intended only to
1818 write the file, use ">" or ">>".  See L<perlfunc/open>.
1819
1820 =item Filehandle %s opened only for output
1821
1822 (W io) You tried to read from a filehandle opened only for writing, If
1823 you intended it to be a read/write filehandle, you needed to open it
1824 with "+<" or "+>" or "+>>" instead of with ">".  If you intended only to
1825 read from the file, use "<".  See L<perlfunc/open>.  Another possibility
1826 is that you attempted to open filedescriptor 0 (also known as STDIN) for
1827 output (maybe you closed STDIN earlier?).
1828
1829 =item Filehandle %s reopened as %s only for input
1830
1831 (W io) You opened for reading a filehandle that got the same filehandle id
1832 as STDOUT or STDERR. This occurred because you closed STDOUT or STDERR
1833 previously.
1834
1835 =item Filehandle STDIN reopened as %s only for output
1836
1837 (W io) You opened for writing a filehandle that got the same filehandle id
1838 as STDIN. This occurred because you closed STDIN previously.
1839
1840 =item Final $ should be \$ or $name
1841
1842 (F) You must now decide whether the final $ in a string was meant to be
1843 a literal dollar sign, or was meant to introduce a variable name that
1844 happens to be missing.  So you have to put either the backslash or the
1845 name.
1846
1847 =item flock() on closed filehandle %s
1848
1849 (W closed) The filehandle you're attempting to flock() got itself closed
1850 some time before now.  Check your control flow.  flock() operates on
1851 filehandles.  Are you attempting to call flock() on a dirhandle by the
1852 same name?
1853
1854 =item Format not terminated
1855
1856 (F) A format must be terminated by a line with a solitary dot.  Perl got
1857 to the end of your file without finding such a line.
1858
1859 =item Format %s redefined
1860
1861 (W redefine) You redefined a format.  To suppress this warning, say
1862
1863     {
1864         no warnings 'redefine';
1865         eval "format NAME =...";
1866     }
1867
1868 =item Found = in conditional, should be ==
1869
1870 (W syntax) You said
1871
1872     if ($foo = 123)
1873
1874 when you meant
1875
1876     if ($foo == 123)
1877
1878 (or something like that).
1879
1880 =item %s found where operator expected
1881
1882 (S syntax) The Perl lexer knows whether to expect a term or an operator.
1883 If it sees what it knows to be a term when it was expecting to see an
1884 operator, it gives you this warning.  Usually it indicates that an
1885 operator or delimiter was omitted, such as a semicolon.
1886
1887 =item gdbm store returned %d, errno %d, key "%s"
1888
1889 (S) A warning from the GDBM_File extension that a store failed.
1890
1891 =item gethostent not implemented
1892
1893 (F) Your C library apparently doesn't implement gethostent(), probably
1894 because if it did, it'd feel morally obligated to return every hostname
1895 on the Internet.
1896
1897 =item get%sname() on closed socket %s
1898
1899 (W closed) You tried to get a socket or peer socket name on a closed
1900 socket.  Did you forget to check the return value of your socket() call?
1901
1902 =item getpwnam returned invalid UIC %#o for user "%s"
1903
1904 (S) A warning peculiar to VMS.  The call to C<sys$getuai> underlying the
1905 C<getpwnam> operator returned an invalid UIC.
1906
1907 =item getsockopt() on closed socket %s
1908
1909 (W closed) You tried to get a socket option on a closed socket.  Did you
1910 forget to check the return value of your socket() call?  See
1911 L<perlfunc/getsockopt>.
1912
1913 =item Global symbol "%s" requires explicit package name
1914
1915 (F) You've said "use strict" or "use strict vars", which indicates 
1916 that all variables must either be lexically scoped (using "my" or "state"), 
1917 declared beforehand using "our", or explicitly qualified to say 
1918 which package the global variable is in (using "::").
1919
1920 =item glob failed (%s)
1921
1922 (W glob) Something went wrong with the external program(s) used for
1923 C<glob> and C<< <*.c> >>.  Usually, this means that you supplied a
1924 C<glob> pattern that caused the external program to fail and exit with a
1925 nonzero status.  If the message indicates that the abnormal exit
1926 resulted in a coredump, this may also mean that your csh (C shell) is
1927 broken.  If so, you should change all of the csh-related variables in
1928 config.sh:  If you have tcsh, make the variables refer to it as if it
1929 were csh (e.g.  C<full_csh='/usr/bin/tcsh'>); otherwise, make them all
1930 empty (except that C<d_csh> should be C<'undef'>) so that Perl will
1931 think csh is missing.  In either case, after editing config.sh, run
1932 C<./Configure -S> and rebuild Perl.
1933
1934 =item Glob not terminated
1935
1936 (F) The lexer saw a left angle bracket in a place where it was expecting
1937 a term, so it's looking for the corresponding right angle bracket, and
1938 not finding it.  Chances are you left some needed parentheses out
1939 earlier in the line, and you really meant a "less than".
1940
1941 =item gmtime(%f) too large
1942
1943 (W overflow) You called C<gmtime> with an number that was larger than
1944 it can reliably handle and C<gmtime> probably returned the wrong
1945 date. This warning is also triggered with nan (the special
1946 not-a-number value).
1947
1948 =item gmtime(%f) too small
1949
1950 (W overflow) You called C<gmtime> with an number that was smaller than
1951 it can reliably handle and C<gmtime> probably returned the wrong
1952 date. This warning is also triggered with nan (the special
1953 not-a-number value).
1954
1955 =item Got an error from DosAllocMem
1956
1957 (P) An error peculiar to OS/2.  Most probably you're using an obsolete
1958 version of Perl, and this should not happen anyway.
1959
1960 =item goto must have label
1961
1962 (F) Unlike with "next" or "last", you're not allowed to goto an
1963 unspecified destination.  See L<perlfunc/goto>.
1964
1965 =item ()-group starts with a count
1966
1967 (F) A ()-group started with a count.  A count is supposed to follow
1968 something: a template character or a ()-group.  See L<perlfunc/pack>.
1969
1970 =item %s had compilation errors.
1971
1972 (F) The final summary message when a C<perl -c> fails.
1973
1974 =item Had to create %s unexpectedly
1975
1976 (S internal) A routine asked for a symbol from a symbol table that ought
1977 to have existed already, but for some reason it didn't, and had to be
1978 created on an emergency basis to prevent a core dump.
1979
1980 =item Hash %%s missing the % in argument %d of %s()
1981
1982 (D deprecated) Really old Perl let you omit the % on hash names in some
1983 spots.  This is now heavily deprecated.
1984
1985 =item %s has too many errors
1986
1987 (F) The parser has given up trying to parse the program after 10 errors.
1988 Further error messages would likely be uninformative.
1989
1990 =item Having no space between pattern and following word is deprecated
1991
1992 (D syntax)
1993
1994 You had a word that isn't a regex modifier immediately following a pattern
1995 without an intervening space.  For example, the two constructs:
1996
1997  $a =~ m/$foo/sand $bar
1998  $a =~ m/$foo/s and $bar
1999
2000 both currently mean the same thing, but it is planned to disallow the first
2001 form in Perl 5.16.  And,
2002
2003  $a =~ m/$foo/and $bar
2004
2005 will be disallowed too.
2006
2007 =item Hexadecimal number > 0xffffffff non-portable
2008
2009 (W portable) The hexadecimal number you specified is larger than 2**32-1
2010 (4294967295) and therefore non-portable between systems.  See
2011 L<perlport> for more on portability concerns.
2012
2013 =item Identifier too long
2014
2015 (F) Perl limits identifiers (names for variables, functions, etc.) to
2016 about 250 characters for simple names, and somewhat more for compound
2017 names (like C<$A::B>).  You've exceeded Perl's limits.  Future versions
2018 of Perl are likely to eliminate these arbitrary limitations.
2019
2020 =item Ignoring zero length \N{} in character class
2021
2022 (W) Named Unicode character escapes (\N{...}) may return a
2023 zero length sequence.  When such an escape is used in a character class
2024 its behaviour is not well defined. Check that the correct escape has
2025 been used, and the correct charname handler is in scope.
2026
2027 =item Illegal binary digit %s
2028
2029 (F) You used a digit other than 0 or 1 in a binary number.
2030
2031 =item Illegal binary digit %s ignored
2032
2033 (W digit) You may have tried to use a digit other than 0 or 1 in a
2034 binary number.  Interpretation of the binary number stopped before the
2035 offending digit.
2036
2037 =item Illegal character \%o (carriage return)
2038
2039 (F) Perl normally treats carriage returns in the program text as it
2040 would any other whitespace, which means you should never see this error
2041 when Perl was built using standard options.  For some reason, your
2042 version of Perl appears to have been built without this support.  Talk
2043 to your Perl administrator.
2044
2045 =item Illegal character in prototype for %s : %s
2046
2047 (W illegalproto) An illegal character was found in a prototype declaration.
2048 Legal characters in prototypes are $, @, %, *, ;, [, ], &, \, and +.
2049
2050 =item Illegal declaration of anonymous subroutine
2051
2052 (F) When using the C<sub> keyword to construct an anonymous subroutine,
2053 you must always specify a block of code. See L<perlsub>.
2054
2055 =item Illegal declaration of subroutine %s
2056
2057 (F) A subroutine was not declared correctly. See L<perlsub>.
2058
2059 =item Illegal division by zero
2060
2061 (F) You tried to divide a number by 0.  Either something was wrong in
2062 your logic, or you need to put a conditional in to guard against
2063 meaningless input.
2064
2065 =item Illegal hexadecimal digit %s ignored
2066
2067 (W digit) You may have tried to use a character other than 0 - 9 or
2068 A - F, a - f in a hexadecimal number.  Interpretation of the hexadecimal
2069 number stopped before the illegal character.
2070
2071 =item Illegal modulus zero
2072
2073 (F) You tried to divide a number by 0 to get the remainder.  Most
2074 numbers don't take to this kindly.
2075
2076 =item Illegal number of bits in vec
2077
2078 (F) The number of bits in vec() (the third argument) must be a power of
2079 two from 1 to 32 (or 64, if your platform supports that).
2080
2081 =item Illegal octal digit %s
2082
2083 (F) You used an 8 or 9 in an octal number.
2084
2085 =item Illegal octal digit %s ignored
2086
2087 (W digit) You may have tried to use an 8 or 9 in an octal number.
2088 Interpretation of the octal number stopped before the 8 or 9.
2089
2090 =item Illegal switch in PERL5OPT: -%c
2091
2092 (X) The PERL5OPT environment variable may only be used to set the
2093 following switches: B<-[CDIMUdmtw]>.
2094
2095 =item Ill-formed CRTL environ value "%s"
2096
2097 (W internal) A warning peculiar to VMS.  Perl tried to read the CRTL's
2098 internal environ array, and encountered an element without the C<=>
2099 delimiter used to separate keys from values.  The element is ignored.
2100
2101 =item Ill-formed message in prime_env_iter: |%s|
2102
2103 (W internal) A warning peculiar to VMS.  Perl tried to read a logical
2104 name or CLI symbol definition when preparing to iterate over %ENV, and
2105 didn't see the expected delimiter between key and value, so the line was
2106 ignored.
2107
2108 =item (in cleanup) %s
2109
2110 (W misc) This prefix usually indicates that a DESTROY() method raised
2111 the indicated exception.  Since destructors are usually called by the
2112 system at arbitrary points during execution, and often a vast number of
2113 times, the warning is issued only once for any number of failures that
2114 would otherwise result in the same message being repeated.
2115
2116 Failure of user callbacks dispatched using the C<G_KEEPERR> flag could
2117 also result in this warning.  See L<perlcall/G_KEEPERR>.
2118
2119 =item Inconsistent hierarchy during C3 merge of class '%s': merging failed on parent '%s'
2120
2121 (F) The method resolution order (MRO) of the given class is not
2122 C3-consistent, and you have enabled the C3 MRO for this class.  See the C3
2123 documentation in L<mro> for more information.
2124
2125 =item In EBCDIC the v-string components cannot exceed 2147483647
2126
2127 (F) An error peculiar to EBCDIC.  Internally, v-strings are stored as
2128 Unicode code points, and encoded in EBCDIC as UTF-EBCDIC.  The UTF-EBCDIC
2129 encoding is limited to code points no larger than 2147483647 (0x7FFFFFFF).
2130
2131 =item Infinite recursion in regex; marked by <-- HERE in m/%s/
2132
2133 (F) You used a pattern that references itself without consuming any input
2134 text. You should check the pattern to ensure that recursive patterns
2135 either consume text or fail.
2136
2137 The <-- HERE shows in the regular expression about where the problem was
2138 discovered.
2139
2140 =item Initialization of state variables in list context currently forbidden
2141
2142 (F) Currently the implementation of "state" only permits the initialization
2143 of scalar variables in scalar context. Re-write C<state ($a) = 42> as
2144 C<state $a = 42> to change from list to scalar context. Constructions such
2145 as C<state (@a) = foo()> will be supported in a future perl release.
2146
2147 =item Insecure dependency in %s
2148
2149 (F) You tried to do something that the tainting mechanism didn't like.
2150 The tainting mechanism is turned on when you're running setuid or
2151 setgid, or when you specify B<-T> to turn it on explicitly.  The
2152 tainting mechanism labels all data that's derived directly or indirectly
2153 from the user, who is considered to be unworthy of your trust.  If any
2154 such data is used in a "dangerous" operation, you get this error.  See
2155 L<perlsec> for more information.
2156
2157 =item Insecure directory in %s
2158
2159 (F) You can't use system(), exec(), or a piped open in a setuid or
2160 setgid script if C<$ENV{PATH}> contains a directory that is writable by
2161 the world.  Also, the PATH must not contain any relative directory.
2162 See L<perlsec>.
2163
2164 =item Insecure $ENV{%s} while running %s
2165
2166 (F) You can't use system(), exec(), or a piped open in a setuid or
2167 setgid script if any of C<$ENV{PATH}>, C<$ENV{IFS}>, C<$ENV{CDPATH}>,
2168 C<$ENV{ENV}>, C<$ENV{BASH_ENV}> or C<$ENV{TERM}> are derived from data
2169 supplied (or potentially supplied) by the user.  The script must set
2170 the path to a known value, using trustworthy data.  See L<perlsec>.
2171
2172 =item Integer overflow in format string for %s
2173
2174 (F) The indexes and widths specified in the format string of C<printf()>
2175 or C<sprintf()> are too large.  The numbers must not overflow the size of
2176 integers for your architecture.
2177
2178 =item Integer overflow in %s number
2179
2180 (W overflow) The hexadecimal, octal or binary number you have specified
2181 either as a literal or as an argument to hex() or oct() is too big for
2182 your architecture, and has been converted to a floating point number.
2183 On a 32-bit architecture the largest hexadecimal, octal or binary number
2184 representable without overflow is 0xFFFFFFFF, 037777777777, or
2185 0b11111111111111111111111111111111 respectively.  Note that Perl
2186 transparently promotes all numbers to a floating point representation
2187 internally--subject to loss of precision errors in subsequent
2188 operations.
2189
2190 =item Integer overflow in version
2191
2192 (F) Some portion of a version initialization is too large for the
2193 size of integers for your architecture.  This is not a warning
2194 because there is no rational reason for a version to try and use a
2195 element larger than typically 2**32.  This is usually caused by
2196 trying to use some odd mathematical operation as a version, like
2197 100/9.
2198
2199 =item Internal disaster in regex; marked by <-- HERE in m/%s/
2200
2201 (P) Something went badly wrong in the regular expression parser.
2202 The <-- HERE shows in the regular expression about where the problem was
2203 discovered.
2204
2205 =item Internal inconsistency in tracking vforks
2206
2207 (S) A warning peculiar to VMS.  Perl keeps track of the number of times
2208 you've called C<fork> and C<exec>, to determine whether the current call
2209 to C<exec> should affect the current script or a subprocess (see
2210 L<perlvms/"exec LIST">).  Somehow, this count has become scrambled, so
2211 Perl is making a guess and treating this C<exec> as a request to
2212 terminate the Perl script and execute the specified command.
2213
2214 =item Internal urp in regex; marked by <-- HERE in m/%s/
2215
2216 (P) Something went badly awry in the regular expression parser. The
2217 <-- HERE shows in the regular expression about where the problem was
2218 discovered.
2219
2220 =item %s (...) interpreted as function
2221
2222 (W syntax) You've run afoul of the rule that says that any list operator
2223 followed by parentheses turns into a function, with all the list
2224 operators arguments found inside the parentheses.  See
2225 L<perlop/Terms and List Operators (Leftward)>.
2226
2227 =item Invalid %s attribute: %s
2228
2229 (F) The indicated attribute for a subroutine or variable was not recognized
2230 by Perl or by a user-supplied handler.  See L<attributes>.
2231
2232 =item Invalid %s attributes: %s
2233
2234 (F) The indicated attributes for a subroutine or variable were not
2235 recognized by Perl or by a user-supplied handler.  See L<attributes>.
2236
2237 =item Invalid conversion in %s: "%s"
2238
2239 (W printf) Perl does not understand the given format conversion.  See
2240 L<perlfunc/sprintf>.
2241
2242 =item Invalid escape in the specified encoding in regex; marked by <-- HERE in m/%s/
2243
2244 (W regexp) The numeric escape (for example C<\xHH>) of value < 256
2245 didn't correspond to a single character through the conversion
2246 from the encoding specified by the encoding pragma.
2247 The escape was replaced with REPLACEMENT CHARACTER (U+FFFD) instead.
2248 The <-- HERE shows in the regular expression about where the
2249 escape was discovered.
2250
2251 =item Invalid mro name: '%s'
2252
2253 (F) You tried to C<mro::set_mro("classname", "foo")> or C<use mro 'foo'>,
2254 where C<foo> is not a valid method resolution order (MRO).  Currently,
2255 the only valid ones supported are C<dfs> and C<c3>, unless you have loaded
2256 a module that is a MRO plugin.  See L<mro> and L<perlmroapi>.
2257
2258 =item Invalid [] range "%s" in regex; marked by <-- HERE in m/%s/
2259
2260 (F) The range specified in a character class had a minimum character
2261 greater than the maximum character.  One possibility is that you forgot the
2262 C<{}> from your ending C<\x{}> - C<\x> without the curly braces can go only
2263 up to C<ff>.  The <-- HERE shows in the regular expression about where the
2264 problem was discovered.  See L<perlre>.
2265
2266 =item Invalid range "%s" in transliteration operator
2267
2268 (F) The range specified in the tr/// or y/// operator had a minimum
2269 character greater than the maximum character.  See L<perlop>.
2270
2271 =item Invalid separator character %s in attribute list
2272
2273 (F) Something other than a colon or whitespace was seen between the
2274 elements of an attribute list.  If the previous attribute had a
2275 parenthesised parameter list, perhaps that list was terminated too soon.
2276 See L<attributes>.
2277
2278 =item Invalid separator character %s in PerlIO layer specification %s
2279
2280 (W layer) When pushing layers onto the Perl I/O system, something other
2281 than a colon or whitespace was seen between the elements of a layer list.
2282 If the previous attribute had a parenthesised parameter list, perhaps that
2283 list was terminated too soon.
2284
2285 =item Invalid strict version format (%s)
2286
2287 (F)  A version number did not meet the "strict" criteria for versions.
2288 A "strict" version number is a positive decimal number (integer or
2289 decimal-fraction) without exponentiation or else a dotted-decimal
2290 v-string with a leading 'v' character and at least three components.
2291 The parenthesized text indicates which criteria were not met.
2292 See the L<version> module for more details on allowed version formats.
2293
2294 =item Invalid type '%s' in %s
2295
2296 (F) The given character is not a valid pack or unpack type.
2297 See L<perlfunc/pack>.
2298 (W) The given character is not a valid pack or unpack type but used to be
2299 silently ignored.
2300
2301 =item Invalid version format (%s)
2302
2303 (F)  A version number did not meet the "lax" criteria for versions.
2304 A "lax" version number is a positive decimal number (integer or
2305 decimal-fraction) without exponentiation or else a dotted-decimal
2306 v-string. If the v-string has fewer than three components, it must
2307 have a leading 'v' character.  Otherwise, the leading 'v' is optional.
2308 Both decimal and dotted-decimal versions may have a trailing "alpha"
2309 component separated by an underscore character after a fractional or
2310 dotted-decimal component.  The parenthesized text indicates which
2311 criteria were not met.  See the L<version> module for more details on
2312 allowed version formats.
2313
2314 =item Invalid version object
2315
2316 (F)  The internal structure of the version object was invalid.  Perhaps
2317 the internals were modified directly in some way or an arbitrary reference
2318 was blessed into the "version" class.
2319
2320 =item ioctl is not implemented
2321
2322 (F) Your machine apparently doesn't implement ioctl(), which is pretty
2323 strange for a machine that supports C.
2324
2325 =item ioctl() on unopened %s
2326
2327 (W unopened) You tried ioctl() on a filehandle that was never opened.
2328 Check you control flow and number of arguments.
2329
2330 =item IO layers (like '%s') unavailable
2331
2332 (F) Your Perl has not been configured to have PerlIO, and therefore
2333 you cannot use IO layers.  To have PerlIO Perl must be configured
2334 with 'useperlio'.
2335
2336 =item IO::Socket::atmark not implemented on this architecture
2337
2338 (F) Your machine doesn't implement the sockatmark() functionality,
2339 neither as a system call or an ioctl call (SIOCATMARK).
2340
2341 =item $* is no longer supported
2342
2343 (D deprecated, syntax) The special variable C<$*>, deprecated in older perls, has
2344 been removed as of 5.9.0 and is no longer supported. In previous versions of perl the use of
2345 C<$*> enabled or disabled multi-line matching within a string.
2346
2347 Instead of using C<$*> you should use the C</m> (and maybe C</s>) regexp
2348 modifiers. (In older versions: when C<$*> was set to a true value then all regular
2349 expressions behaved as if they were written using C</m>.)
2350
2351 =item $# is no longer supported
2352
2353 (D deprecated, syntax) The special variable C<$#>, deprecated in older perls, has
2354 been removed as of 5.9.3 and is no longer supported. You should use the
2355 printf/sprintf functions instead.
2356
2357 =item `%s' is not a code reference
2358
2359 (W overload) The second (fourth, sixth, ...) argument of overload::constant
2360 needs to be a code reference. Either an anonymous subroutine, or a reference
2361 to a subroutine.
2362
2363 =item `%s' is not an overloadable type
2364
2365 (W overload) You tried to overload a constant type the overload package is
2366 unaware of.
2367
2368 =item junk on end of regexp
2369
2370 (P) The regular expression parser is confused.
2371
2372 =item Label not found for "last %s"
2373
2374 (F) You named a loop to break out of, but you're not currently in a loop
2375 of that name, not even if you count where you were called from.  See
2376 L<perlfunc/last>.
2377
2378 =item Label not found for "next %s"
2379
2380 (F) You named a loop to continue, but you're not currently in a loop of
2381 that name, not even if you count where you were called from.  See
2382 L<perlfunc/last>.
2383
2384 =item Label not found for "redo %s"
2385
2386 (F) You named a loop to restart, but you're not currently in a loop of
2387 that name, not even if you count where you were called from.  See
2388 L<perlfunc/last>.
2389
2390 =item leaving effective %s failed
2391
2392 (F) While under the C<use filetest> pragma, switching the real and
2393 effective uids or gids failed.
2394
2395 =item length/code after end of string in unpack
2396
2397 (F) While unpacking, the string buffer was already used up when an unpack
2398 length/code combination tried to obtain more data. This results in
2399 an undefined value for the length. See L<perlfunc/pack>.
2400
2401 =item Lexing code attempted to stuff non-Latin-1 character into Latin-1 input
2402
2403 (F) An extension is attempting to insert text into the current parse
2404 (using L<lex_stuff_pvn_flags|perlapi/lex_stuff_pvn_flags> or similar), but
2405 tried to insert a character that couldn't be part of the current input.
2406 This is an inherent pitfall of the stuffing mechanism, and one of the
2407 reasons to avoid it.  Where it is necessary to stuff, stuffing only
2408 plain ASCII is recommended.
2409
2410 =item Lexing code internal error (%s)
2411
2412 (F) Lexing code supplied by an extension violated the lexer's API in a
2413 detectable way.
2414
2415 =item listen() on closed socket %s
2416
2417 (W closed) You tried to do a listen on a closed socket.  Did you forget
2418 to check the return value of your socket() call?  See
2419 L<perlfunc/listen>.
2420
2421 =item localtime(%f) too large
2422
2423 (W overflow) You called C<localtime> with an number that was larger
2424 than it can reliably handle and C<localtime> probably returned the
2425 wrong date. This warning is also triggered with nan (the special
2426 not-a-number value).
2427
2428 =item localtime(%f) too small
2429
2430 (W overflow) You called C<localtime> with an number that was smaller
2431 than it can reliably handle and C<localtime> probably returned the
2432 wrong date. This warning is also triggered with nan (the special
2433 not-a-number value).
2434
2435 =item Lookbehind longer than %d not implemented in regex m/%s/
2436
2437 (F) There is currently a limit on the length of string which lookbehind can
2438 handle. This restriction may be eased in a future release. 
2439
2440 =item Lost precision when %s %f by 1
2441
2442 (W) The value you attempted to increment or decrement by one is too large
2443 for the underlying floating point representation to store accurately,
2444 hence the target of C<++> or C<--> is unchanged. Perl issues this warning
2445 because it has already switched from integers to floating point when values
2446 are too large for integers, and now even floating point is insufficient.
2447 You may wish to switch to using L<Math::BigInt> explicitly.
2448
2449 =item lstat() on filehandle %s
2450
2451 (W io) You tried to do an lstat on a filehandle.  What did you mean
2452 by that?  lstat() makes sense only on filenames.  (Perl did a fstat()
2453 instead on the filehandle.)
2454
2455 =item lvalue attribute ignored after the subroutine has been defined
2456
2457 (W misc) Making a subroutine an lvalue subroutine after it has been defined
2458 by declaring the subroutine with an lvalue attribute is not
2459 possible. To make the subroutine an lvalue subroutine add the
2460 lvalue attribute to the definition, or put the declaration before
2461 the definition.
2462
2463 =item Lvalue subs returning %s not implemented yet
2464
2465 (F) Due to limitations in the current implementation, array and hash
2466 values cannot be returned in subroutines used in lvalue context.  See
2467 L<perlsub/"Lvalue subroutines">.
2468
2469 =item Malformed integer in [] in  pack
2470
2471 (F) Between the  brackets enclosing a numeric repeat count only digits
2472 are permitted.  See L<perlfunc/pack>.
2473
2474 =item Malformed integer in [] in unpack
2475
2476 (F) Between the  brackets enclosing a numeric repeat count only digits
2477 are permitted.  See L<perlfunc/pack>.
2478
2479 =item Malformed PERLLIB_PREFIX
2480
2481 (F) An error peculiar to OS/2.  PERLLIB_PREFIX should be of the form
2482
2483     prefix1;prefix2
2484
2485 or
2486     prefix1 prefix2
2487
2488 with nonempty prefix1 and prefix2.  If C<prefix1> is indeed a prefix of
2489 a builtin library search path, prefix2 is substituted.  The error may
2490 appear if components are not found, or are too long.  See
2491 "PERLLIB_PREFIX" in L<perlos2>.
2492
2493 =item Malformed prototype for %s: %s
2494
2495 (F) You tried to use a function with a malformed prototype.  The
2496 syntax of function prototypes is given a brief compile-time check for
2497 obvious errors like invalid characters.  A more rigorous check is run
2498 when the function is called.
2499
2500 =item Malformed UTF-8 character (%s)
2501
2502 (S utf8) (F) Perl detected a string that didn't comply with UTF-8
2503 encoding rules, even though it had the UTF8 flag on.
2504
2505 One possible cause is that you set the UTF8 flag yourself for data that
2506 you thought to be in UTF-8 but it wasn't (it was for example legacy
2507 8-bit data). To guard against this, you can use Encode::decode_utf8.
2508
2509 If you use the C<:encoding(UTF-8)> PerlIO layer for input, invalid byte
2510 sequences are handled gracefully, but if you use C<:utf8>, the flag is
2511 set without validating the data, possibly resulting in this error
2512 message.
2513
2514 See also L<Encode/"Handling Malformed Data">.
2515
2516 =item Malformed UTF-16 surrogate
2517
2518 (F) Perl thought it was reading UTF-16 encoded character data but while
2519 doing it Perl met a malformed Unicode surrogate.
2520
2521 =item Malformed UTF-8 returned by \N
2522
2523 (F) The charnames handler returned malformed UTF-8.
2524
2525 =item Malformed UTF-8 string in pack
2526
2527 (F) You tried to pack something that didn't comply with UTF-8 encoding
2528 rules and perl was unable to guess how to make more progress.
2529
2530 =item Malformed UTF-8 string in unpack
2531
2532 (F) You tried to unpack something that didn't comply with UTF-8 encoding
2533 rules and perl was unable to guess how to make more progress.
2534
2535 =item Malformed UTF-8 string in '%c' format in unpack
2536
2537 (F) You tried to unpack something that didn't comply with UTF-8 encoding
2538 rules and perl was unable to guess how to make more progress.
2539
2540 =item Maximal count of pending signals (%u) exceeded
2541
2542 (F) Perl aborted due to a too high number of signals pending. This
2543 usually indicates that your operating system tried to deliver signals
2544 too fast (with a very high priority), starving the perl process from
2545 resources it would need to reach a point where it can process signals
2546 safely. (See L<perlipc/"Deferred Signals (Safe Signals)">.)
2547
2548 =item %s matches null string many times in regex; marked by <-- HERE in m/%s/
2549
2550 (W regexp) The pattern you've specified would be an infinite loop if the
2551 regular expression engine didn't specifically check for that.  The <-- HERE
2552 shows in the regular expression about where the problem was discovered.
2553 See L<perlre>.
2554
2555 =item "%s" may clash with future reserved word
2556
2557 (W) This warning may be due to running a perl5 script through a perl4
2558 interpreter, especially if the word that is being warned about is
2559 "use" or "my".
2560
2561 =item % may not be used in pack
2562
2563 (F) You can't pack a string by supplying a checksum, because the
2564 checksumming process loses information, and you can't go the other way.
2565 See L<perlfunc/unpack>.
2566
2567 =item Method for operation %s not found in package %s during blessing
2568
2569 (F) An attempt was made to specify an entry in an overloading table that
2570 doesn't resolve to a valid subroutine.  See L<overload>.
2571
2572 =item Method %s not permitted
2573
2574 See Server error.
2575
2576 =item Might be a runaway multi-line %s string starting on line %d
2577
2578 (S) An advisory indicating that the previous error may have been caused
2579 by a missing delimiter on a string or pattern, because it eventually
2580 ended earlier on the current line.
2581
2582 =item Misplaced _ in number
2583
2584 (W syntax) An underscore (underbar) in a numeric constant did not
2585 separate two digits.
2586
2587 =item Missing argument in %s
2588
2589 (W uninitialized) A printf-type format required more arguments than were
2590 supplied.
2591
2592 =item Missing argument to -%c
2593
2594 (F) The argument to the indicated command line switch must follow
2595 immediately after the switch, without intervening spaces.
2596
2597 =item Missing braces on \N{}
2598
2599 (F) Wrong syntax of character name literal C<\N{charname}> within
2600 double-quotish context.  This can also happen when there is a space (or
2601 comment) between the C<\N> and the C<{> in a regex with the C</x> modifier.
2602 This modifier does not change the requirement that the brace immediately follow
2603 the C<\N>.
2604
2605 =item Missing braces on \o{}
2606
2607 (F) A C<\o> must be followed immediately by a C<{> in double-quotish context.
2608
2609 =item Missing comma after first argument to %s function
2610
2611 (F) While certain functions allow you to specify a filehandle or an
2612 "indirect object" before the argument list, this ain't one of them.
2613
2614 =item Missing command in piped open
2615
2616 (W pipe) You used the C<open(FH, "| command")> or
2617 C<open(FH, "command |")> construction, but the command was missing or
2618 blank.
2619
2620 =item Missing control char name in \c
2621
2622 (F) A double-quoted string ended with "\c", without the required control
2623 character name.
2624
2625 =item Missing name in "my sub"
2626
2627 (F) The reserved syntax for lexically scoped subroutines requires that
2628 they have a name with which they can be found.
2629
2630 =item Missing $ on loop variable
2631
2632 (F) Apparently you've been programming in B<csh> too much.  Variables
2633 are always mentioned with the $ in Perl, unlike in the shells, where it
2634 can vary from one line to the next.
2635
2636 =item (Missing operator before %s?)
2637
2638 (S syntax) This is an educated guess made in conjunction with the message
2639 "%s found where operator expected".  Often the missing operator is a comma.
2640
2641 =item Missing right brace on %s
2642
2643 (F) Missing right brace in C<\x{...}>, C<\p{...}>, C<\P{...}>, or C<\N{...}>.
2644
2645 =item Missing right brace on \N{} or unescaped left brace after \N
2646
2647 (F)
2648 C<\N> has two meanings.
2649
2650 The traditional one has it followed by a name enclosed
2651 in braces, meaning the character (or sequence of characters) given by that name.
2652 Thus C<\N{ASTERISK}> is another way of writing C<*>, valid in both
2653 double-quoted strings and regular expression patterns.  In patterns, it doesn't
2654 have the meaning an unescaped C<*> does.
2655
2656 Starting in Perl 5.12.0, C<\N> also can have an additional meaning (only) in
2657 patterns, namely to match a non-newline character.  (This is short for
2658 C<[^\n]>, and like C<.> but is not affected by the C</s> regex modifier.)
2659
2660 This can lead to some ambiguities.  When C<\N> is not followed immediately by a
2661 left brace, Perl assumes the C<[^\n]> meaning.  Also, if
2662 the braces form a valid quantifier such as C<\N{3}> or C<\N{5,}>, Perl assumes
2663 that this means to match the given quantity of non-newlines (in these examples,
2664 3; and 5 or more, respectively).  In all other case, where there is a C<\N{>
2665 and a matching C<}>, Perl assumes that a character name is desired.
2666
2667 However, if there is no matching C<}>, Perl doesn't know if it was mistakenly
2668 omitted, or if C<[^\n]{> was desired, and
2669 raises this error.  If you meant the former, add the right brace; if you meant
2670 the latter, escape the brace with a backslash, like so: C<\N\{>
2671
2672 =item Missing right curly or square bracket
2673
2674 (F) The lexer counted more opening curly or square brackets than closing
2675 ones.  As a general rule, you'll find it's missing near the place you
2676 were last editing.
2677
2678 =item (Missing semicolon on previous line?)
2679
2680 (S syntax) This is an educated guess made in conjunction with the message
2681 "%s found where operator expected".  Don't automatically put a semicolon on
2682 the previous line just because you saw this message.
2683
2684 =item Modification of a read-only value attempted
2685
2686 (F) You tried, directly or indirectly, to change the value of a
2687 constant.  You didn't, of course, try "2 = 1", because the compiler
2688 catches that.  But an easy way to do the same thing is:
2689
2690     sub mod { $_[0] = 1 }
2691     mod(2);
2692
2693 Another way is to assign to a substr() that's off the end of the string.
2694
2695 Yet another way is to assign to a C<foreach> loop I<VAR> when I<VAR>
2696 is aliased to a constant in the look I<LIST>:
2697
2698         $x = 1;
2699         foreach my $n ($x, 2) {
2700             $n *= 2; # modifies the $x, but fails on attempt to modify the 2
2701         }
2702
2703 =item Modification of non-creatable array value attempted, %s
2704
2705 (F) You tried to make an array value spring into existence, and the
2706 subscript was probably negative, even counting from end of the array
2707 backwards.
2708
2709 =item Modification of non-creatable hash value attempted, %s
2710
2711 (P) You tried to make a hash value spring into existence, and it
2712 couldn't be created for some peculiar reason.
2713
2714 =item Module name must be constant
2715
2716 (F) Only a bare module name is allowed as the first argument to a "use".
2717
2718 =item Module name required with -%c option
2719
2720 (F) The C<-M> or C<-m> options say that Perl should load some module, but
2721 you omitted the name of the module.  Consult L<perlrun> for full details
2722 about C<-M> and C<-m>.
2723
2724 =item More than one argument to '%s' open
2725
2726 (F) The C<open> function has been asked to open multiple files. This
2727 can happen if you are trying to open a pipe to a command that takes a
2728 list of arguments, but have forgotten to specify a piped open mode.
2729 See L<perlfunc/open> for details.
2730
2731 =item msg%s not implemented
2732
2733 (F) You don't have System V message IPC on your system.
2734
2735 =item Multidimensional syntax %s not supported
2736
2737 (W syntax) Multidimensional arrays aren't written like C<$foo[1,2,3]>.
2738 They're written like C<$foo[1][2][3]>, as in C.
2739
2740 =item '/' must follow a numeric type in unpack
2741
2742 (F) You had an unpack template that contained a '/', but this did not
2743 follow some unpack specification producing a numeric value.
2744 See L<perlfunc/pack>.
2745
2746 =item "my sub" not yet implemented
2747
2748 (F) Lexically scoped subroutines are not yet implemented.  Don't try
2749 that yet.
2750
2751 =item "%s" variable %s can't be in a package
2752
2753 (F) Lexically scoped variables aren't in a package, so it doesn't make
2754 sense to try to declare one with a package qualifier on the front.  Use
2755 local() if you want to localize a package variable.
2756
2757 =item \N in a character class must be a named character: \N{...}
2758
2759 (F) The new (5.12) meaning of C<\N> as C<[^\n]> is not valid in a bracketed
2760 character class, for the same reason that C<.> in a character class loses its
2761 specialness: it matches almost everything, which is probably not what you want.
2762
2763 =item \N{NAME} must be resolved by the lexer
2764
2765 (F) When compiling a regex pattern, an unresolved named character or sequence
2766 was encountered.  This can happen in any of several ways that bypass the lexer,
2767 such as using single-quotish context, or an extra backslash in double quotish:
2768
2769     $re = '\N{SPACE}';  # Wrong!
2770     $re = "\\N{SPACE}"; # Wrong!
2771     /$re/;
2772
2773 Instead, use double-quotes with a single backslash:
2774
2775     $re = "\N{SPACE}";  # ok
2776     /$re/;
2777
2778 The lexer can be bypassed as well by creating the pattern from smaller
2779 components:
2780
2781     $re = '\N';
2782     /${re}{SPACE}/;     # Wrong!
2783
2784 It's not a good idea to split a construct in the middle like this, and it
2785 doesn't work here.  Instead use the solution above.
2786
2787 Finally, the message also can happen under the C</x> regex modifier when the
2788 C<\N> is separated by spaces from the C<{>, in which case, remove the spaces.
2789
2790     /\N {SPACE}/x;      # Wrong!
2791     /\N{SPACE}/x;       # ok
2792
2793 =item Name "%s::%s" used only once: possible typo
2794
2795 (W once) Typographical errors often show up as unique variable names.
2796 If you had a good reason for having a unique name, then just mention it
2797 again somehow to suppress the message.  The C<our> declaration is
2798 provided for this purpose.
2799
2800 NOTE: This warning detects symbols that have been used only once so $c, @c,
2801 %c, *c, &c, sub c{}, c(), and c (the filehandle or format) are considered
2802 the same; if a program uses $c only once but also uses any of the others it
2803 will not trigger this warning.
2804
2805 =item Invalid hexadecimal number in \N{U+...}
2806
2807 (F) The character constant represented by C<...> is not a valid hexadecimal
2808 number.  Either it is empty, or you tried to use a character other than 0 - 9
2809 or A - F, a - f in a hexadecimal number.
2810
2811 =item Negative '/' count in unpack
2812
2813 (F) The length count obtained from a length/code unpack operation was
2814 negative.  See L<perlfunc/pack>.
2815
2816 =item Negative length
2817
2818 (F) You tried to do a read/write/send/recv operation with a buffer
2819 length that is less than 0.  This is difficult to imagine.
2820
2821 =item Negative offset to vec in lvalue context
2822
2823 (F) When C<vec> is called in an lvalue context, the second argument must be
2824 greater than or equal to zero.
2825
2826 =item Nested quantifiers in regex; marked by <-- HERE in m/%s/
2827
2828 (F) You can't quantify a quantifier without intervening parentheses. So
2829 things like ** or +* or ?* are illegal. The <-- HERE shows in the regular
2830 expression about where the problem was discovered.
2831
2832 Note that the minimal matching quantifiers, C<*?>, C<+?>, and
2833 C<??> appear to be nested quantifiers, but aren't.  See L<perlre>.
2834
2835 =item %s never introduced
2836
2837 (S internal) The symbol in question was declared but somehow went out of
2838 scope before it could possibly have been used.
2839
2840 =item next::method/next::can/maybe::next::method cannot find enclosing method
2841
2842 (F) C<next::method> needs to be called within the context of a
2843 real method in a real package, and it could not find such a context.
2844 See L<mro>.
2845
2846 =item No %s allowed while running setuid
2847
2848 (F) Certain operations are deemed to be too insecure for a setuid or
2849 setgid script to even be allowed to attempt.  Generally speaking there
2850 will be another way to do what you want that is, if not secure, at least
2851 securable.  See L<perlsec>.
2852
2853 =item No comma allowed after %s
2854
2855 (F) A list operator that has a filehandle or "indirect object" is not
2856 allowed to have a comma between that and the following arguments.
2857 Otherwise it'd be just another one of the arguments.
2858
2859 One possible cause for this is that you expected to have imported a
2860 constant to your name space with B<use> or B<import> while no such
2861 importing took place, it may for example be that your operating system
2862 does not support that particular constant. Hopefully you did use an
2863 explicit import list for the constants you expect to see, please see
2864 L<perlfunc/use> and L<perlfunc/import>. While an explicit import list
2865 would probably have caught this error earlier it naturally does not
2866 remedy the fact that your operating system still does not support that
2867 constant. Maybe you have a typo in the constants of the symbol import
2868 list of B<use> or B<import> or in the constant name at the line where
2869 this error was triggered?
2870
2871 =item No command into which to pipe on command line
2872
2873 (F) An error peculiar to VMS.  Perl handles its own command line
2874 redirection, and found a '|' at the end of the command line, so it
2875 doesn't know where you want to pipe the output from this command.
2876
2877 =item No DB::DB routine defined
2878
2879 (F) The currently executing code was compiled with the B<-d> switch, but
2880 for some reason the  current debugger (e.g. F<perl5db.pl> or a C<Devel::>
2881 module) didn't define a routine to be called at the beginning of each
2882 statement.
2883
2884 =item No dbm on this machine
2885
2886 (P) This is counted as an internal error, because every machine should
2887 supply dbm nowadays, because Perl comes with SDBM.  See L<SDBM_File>.
2888
2889 =item No DB::sub routine defined
2890
2891 (F) The currently executing code was compiled with the B<-d> switch, but
2892 for some reason the current debugger (e.g. F<perl5db.pl> or a C<Devel::>
2893 module) didn't define a C<DB::sub> routine to be called at the beginning
2894 of each ordinary subroutine call.
2895
2896 =item No B<-e> allowed in setuid scripts
2897
2898 (F) A setuid script can't be specified by the user.
2899
2900 =item No error file after 2> or 2>> on command line
2901
2902 (F) An error peculiar to VMS.  Perl handles its own command line
2903 redirection, and found a '2>' or a '2>>' on the command line, but can't
2904 find the name of the file to which to write data destined for stderr.
2905
2906 =item No group ending character '%c' found in template
2907
2908 (F) A pack or unpack template has an opening '(' or '[' without its
2909 matching counterpart. See L<perlfunc/pack>.
2910
2911 =item No input file after < on command line
2912
2913 (F) An error peculiar to VMS.  Perl handles its own command line
2914 redirection, and found a '<' on the command line, but can't find the
2915 name of the file from which to read data for stdin.
2916
2917 =item No #! line
2918
2919 (F) The setuid emulator requires that scripts have a well-formed #! line
2920 even on machines that don't support the #! construct.
2921
2922 =item No next::method '%s' found for %s
2923
2924 (F) C<next::method> found no further instances of this method name
2925 in the remaining packages of the MRO of this class.  If you don't want
2926 it throwing an exception, use C<maybe::next::method>
2927 or C<next::can>. See L<mro>.
2928
2929 =item "no" not allowed in expression
2930
2931 (F) The "no" keyword is recognized and executed at compile time, and
2932 returns no useful value.  See L<perlmod>.
2933
2934 =item No output file after > on command line
2935
2936 (F) An error peculiar to VMS.  Perl handles its own command line
2937 redirection, and found a lone '>' at the end of the command line, so it
2938 doesn't know where you wanted to redirect stdout.
2939
2940 =item No output file after > or >> on command line
2941
2942 (F) An error peculiar to VMS.  Perl handles its own command line
2943 redirection, and found a '>' or a '>>' on the command line, but can't
2944 find the name of the file to which to write data destined for stdout.
2945
2946 =item No package name allowed for variable %s in "our"
2947
2948 (F) Fully qualified variable names are not allowed in "our"
2949 declarations, because that doesn't make much sense under existing
2950 semantics.  Such syntax is reserved for future extensions.
2951
2952 =item No Perl script found in input
2953
2954 (F) You called C<perl -x>, but no line was found in the file beginning
2955 with #! and containing the word "perl".
2956
2957 =item No setregid available
2958
2959 (F) Configure didn't find anything resembling the setregid() call for
2960 your system.
2961
2962 =item No setreuid available
2963
2964 (F) Configure didn't find anything resembling the setreuid() call for
2965 your system.
2966
2967 =item No %s specified for -%c
2968
2969 (F) The indicated command line switch needs a mandatory argument, but
2970 you haven't specified one.
2971 =item No such class field "%s" in variable %s of type %s
2972
2973 (F) You tried to access a key from a hash through the indicated typed variable
2974 but that key is not allowed by the package of the same type.  The indicated
2975 package has restricted the set of allowed keys using the L<fields> pragma.
2976
2977 =item No such class %s
2978
2979 (F) You provided a class qualifier in a "my", "our" or "state" declaration, but
2980 this class doesn't exist at this point in your program.
2981
2982 =item No such hook: %s
2983
2984 (F) You specified a signal hook that was not recognized by Perl.  Currently, Perl
2985 accepts C<__DIE__> and C<__WARN__> as valid signal hooks
2986
2987 =item No such pipe open
2988
2989 (P) An error peculiar to VMS.  The internal routine my_pclose() tried to
2990 close a pipe which hadn't been opened.  This should have been caught
2991 earlier as an attempt to close an unopened filehandle.
2992
2993 =item No such signal: SIG%s
2994
2995 (W signal) You specified a signal name as a subscript to %SIG that was
2996 not recognized.  Say C<kill -l> in your shell to see the valid signal
2997 names on your system.
2998
2999 =item Not a CODE reference
3000
3001 (F) Perl was trying to evaluate a reference to a code value (that is, a
3002 subroutine), but found a reference to something else instead.  You can
3003 use the ref() function to find out what kind of ref it really was.  See
3004 also L<perlref>.
3005
3006 =item Not a format reference
3007
3008 (F) I'm not sure how you managed to generate a reference to an anonymous
3009 format, but this indicates you did, and that it didn't exist.
3010
3011 =item Not a GLOB reference
3012
3013 (F) Perl was trying to evaluate a reference to a "typeglob" (that is, a
3014 symbol table entry that looks like C<*foo>), but found a reference to
3015 something else instead.  You can use the ref() function to find out what
3016 kind of ref it really was.  See L<perlref>.
3017
3018 =item Not a HASH reference
3019
3020 (F) Perl was trying to evaluate a reference to a hash value, but found a
3021 reference to something else instead.  You can use the ref() function to
3022 find out what kind of ref it really was.  See L<perlref>.
3023
3024 =item Not an ARRAY reference
3025
3026 (F) Perl was trying to evaluate a reference to an array value, but found
3027 a reference to something else instead.  You can use the ref() function
3028 to find out what kind of ref it really was.  See L<perlref>.
3029
3030 =item Not a perl script
3031
3032 (F) The setuid emulator requires that scripts have a well-formed #! line
3033 even on machines that don't support the #! construct.  The line must
3034 mention perl.
3035
3036 =item Not a SCALAR reference
3037
3038 (F) Perl was trying to evaluate a reference to a scalar value, but found
3039 a reference to something else instead.  You can use the ref() function
3040 to find out what kind of ref it really was.  See L<perlref>.
3041
3042 =item Not a subroutine reference
3043
3044 (F) Perl was trying to evaluate a reference to a code value (that is, a
3045 subroutine), but found a reference to something else instead.  You can
3046 use the ref() function to find out what kind of ref it really was.  See
3047 also L<perlref>.
3048
3049 =item Not a subroutine reference in overload table
3050
3051 (F) An attempt was made to specify an entry in an overloading table that
3052 doesn't somehow point to a valid subroutine.  See L<overload>.
3053
3054 =item Not enough arguments for %s
3055
3056 (F) The function requires more arguments than you specified.
3057
3058 =item Not enough format arguments
3059
3060 (W syntax) A format specified more picture fields than the next line
3061 supplied.  See L<perlform>.
3062
3063 =item %s: not found
3064
3065 (A) You've accidentally run your script through the Bourne shell instead
3066 of Perl.  Check the #! line, or manually feed your script into Perl
3067 yourself.
3068
3069 =item no UTC offset information; assuming local time is UTC
3070
3071 (S) A warning peculiar to VMS.  Perl was unable to find the local
3072 timezone offset, so it's assuming that local system time is equivalent
3073 to UTC.  If it's not, define the logical name
3074 F<SYS$TIMEZONE_DIFFERENTIAL> to translate to the number of seconds which
3075 need to be added to UTC to get local time.
3076
3077 =item Non-octal character '%c'.  Resolved as "%s"
3078
3079 (W digit)  In parsing an octal numeric constant, a character was unexpectedly
3080 encountered that isn't octal.  The resulting value is as indicated.
3081
3082 =item Non-string passed as bitmask
3083
3084 (W misc) A number has been passed as a bitmask argument to select().
3085 Use the vec() function to construct the file descriptor bitmasks for
3086 select. See L<perlfunc/select>
3087
3088 =item Null filename used
3089
3090 (F) You can't require the null filename, especially because on many
3091 machines that means the current directory!  See L<perlfunc/require>.
3092
3093 =item NULL OP IN RUN
3094
3095 (P debugging) Some internal routine called run() with a null opcode
3096 pointer.
3097
3098 =item Null picture in formline
3099
3100 (F) The first argument to formline must be a valid format picture
3101 specification.  It was found to be empty, which probably means you
3102 supplied it an uninitialized value.  See L<perlform>.
3103
3104 =item Null realloc
3105
3106 (P) An attempt was made to realloc NULL.
3107
3108 =item NULL regexp argument
3109
3110 (P) The internal pattern matching routines blew it big time.
3111
3112 =item NULL regexp parameter
3113
3114 (P) The internal pattern matching routines are out of their gourd.
3115
3116 =item Number too long
3117
3118 (F) Perl limits the representation of decimal numbers in programs to
3119 about 250 characters.  You've exceeded that length.  Future
3120 versions of Perl are likely to eliminate this arbitrary limitation.  In
3121 the meantime, try using scientific notation (e.g. "1e6" instead of
3122 "1_000_000").
3123
3124 =item Number with no digits
3125
3126 (F) Perl was looking for a number but found nothing that looked like a number.
3127 This happens, for example with C<\o{}>, with no number between the braces.
3128
3129 =item Octal number in vector unsupported
3130
3131 (F) Numbers with a leading C<0> are not currently allowed in vectors.
3132 The octal number interpretation of such numbers may be supported in a
3133 future version.
3134
3135 =item Octal number > 037777777777 non-portable
3136
3137 (W portable) The octal number you specified is larger than 2**32-1
3138 (4294967295) and therefore non-portable between systems.  See
3139 L<perlport> for more on portability concerns.
3140
3141 See also L<perlport> for writing portable code.
3142
3143 =item Odd number of arguments for overload::constant
3144
3145 (W overload) The call to overload::constant contained an odd number of
3146 arguments. The arguments should come in pairs.
3147
3148 =item Odd number of elements in anonymous hash
3149
3150 (W misc) You specified an odd number of elements to initialize a hash,
3151 which is odd, because hashes come in key/value pairs.
3152
3153 =item Odd number of elements in hash assignment
3154
3155 (W misc) You specified an odd number of elements to initialize a hash,
3156 which is odd, because hashes come in key/value pairs.
3157
3158 =item Offset outside string
3159
3160 (F|W layer) You tried to do a read/write/send/recv/seek operation
3161 with an offset pointing outside the buffer.  This is difficult to
3162 imagine.  The sole exceptions to this are that zero padding will
3163 take place when going past the end of the string when either
3164 C<sysread()>ing a file, or when seeking past the end of a scalar opened
3165 for I/O (in anticipation of future reads and to imitate the behaviour
3166 with real files).
3167
3168 =item %s() on unopened %s
3169
3170 (W unopened) An I/O operation was attempted on a filehandle that was
3171 never initialized.  You need to do an open(), a sysopen(), or a socket()
3172 call, or call a constructor from the FileHandle package.
3173
3174 =item -%s on unopened filehandle %s
3175
3176 (W unopened) You tried to invoke a file test operator on a filehandle
3177 that isn't open.  Check your control flow.  See also L<perlfunc/-X>.
3178
3179 =item oops: oopsAV
3180
3181 (S internal) An internal warning that the grammar is screwed up.
3182
3183 =item oops: oopsHV
3184
3185 (S internal) An internal warning that the grammar is screwed up.
3186
3187 =item Opening dirhandle %s also as a file
3188
3189 (W io, deprecated) You used open() to associate a filehandle to
3190 a symbol (glob or scalar) that already holds a dirhandle.
3191 Although legal, this idiom might render your code confusing
3192 and is deprecated.
3193
3194 =item Opening filehandle %s also as a directory
3195
3196 (W io, deprecated) You used opendir() to associate a dirhandle to
3197 a symbol (glob or scalar) that already holds a filehandle.
3198 Although legal, this idiom might render your code confusing
3199 and is deprecated.
3200
3201 =item Operation "%s": no method found, %s
3202
3203 (F) An attempt was made to perform an overloaded operation for which no
3204 handler was defined.  While some handlers can be autogenerated in terms
3205 of other handlers, there is no default handler for any operation, unless
3206 C<fallback> overloading key is specified to be true.  See L<overload>.
3207
3208 =item Operation "%s" returns its argument for UTF-16 surrogate U+%X
3209
3210 (W) You performed an operation requiring Unicode semantics on a Unicode
3211 surrogate.  Unicode frowns upon the use of surrogates for anything but
3212 storing strings in UTF-16, but semantics are (reluctantly) defined for
3213 the surrogates, and they are to do nothing for this operation.  Because
3214 the use of surrogates can be dangerous, Perl warns.
3215
3216 If the operation shown is "ToFold", it means that case-insensitive
3217 matching in a regular expression was done on the code point.
3218
3219 If you know what you are doing you can turn off this warning by
3220 C<no warnings 'utf8';>.
3221
3222 =item Operation "%s" returns its argument for non-Unicode code point 0x%X
3223
3224 (W) You performed an operation requiring Unicode semantics on a code
3225 point that is not in Unicode, so what it should do is not defined.  Perl
3226 has chosen to have it do nothing, and warn you.
3227
3228 If the operation shown is "ToFold", it means that case-insensitive
3229 matching in a regular expression was done on the code point.
3230
3231 If you know what you are doing you can turn off this warning by
3232 C<no warnings 'utf8';>.
3233
3234 =item Operator or semicolon missing before %s
3235
3236 (S ambiguous) You used a variable or subroutine call where the parser
3237 was expecting an operator.  The parser has assumed you really meant to
3238 use an operator, but this is highly likely to be incorrect.  For
3239 example, if you say "*foo *foo" it will be interpreted as if you said
3240 "*foo * 'foo'".
3241
3242 =item "our" variable %s redeclared
3243
3244 (W misc) You seem to have already declared the same global once before
3245 in the current lexical scope.
3246
3247 =item Out of memory!
3248
3249 (X) The malloc() function returned 0, indicating there was insufficient
3250 remaining memory (or virtual memory) to satisfy the request.  Perl has
3251 no option but to exit immediately.
3252
3253 At least in Unix you may be able to get past this by increasing your
3254 process datasize limits: in csh/tcsh use C<limit> and
3255 C<limit datasize n> (where C<n> is the number of kilobytes) to check
3256 the current limits and change them, and in ksh/bash/zsh use C<ulimit -a>
3257 and C<ulimit -d n>, respectively.
3258
3259 =item Out of memory during %s extend
3260
3261 (X) An attempt was made to extend an array, a list, or a string beyond
3262 the largest possible memory allocation.
3263
3264 =item Out of memory during "large" request for %s
3265
3266 (F) The malloc() function returned 0, indicating there was insufficient
3267 remaining memory (or virtual memory) to satisfy the request. However,
3268 the request was judged large enough (compile-time default is 64K), so a
3269 possibility to shut down by trapping this error is granted.
3270
3271 =item Out of memory during request for %s
3272
3273 (X|F) The malloc() function returned 0, indicating there was
3274 insufficient remaining memory (or virtual memory) to satisfy the
3275 request.
3276
3277 The request was judged to be small, so the possibility to trap it
3278 depends on the way perl was compiled.  By default it is not trappable.
3279 However, if compiled for this, Perl may use the contents of C<$^M> as an
3280 emergency pool after die()ing with this message.  In this case the error
3281 is trappable I<once>, and the error message will include the line and file
3282 where the failed request happened.
3283
3284 =item Out of memory during ridiculously large request
3285
3286 (F) You can't allocate more than 2^31+"small amount" bytes.  This error
3287 is most likely to be caused by a typo in the Perl program. e.g.,
3288 C<$arr[time]> instead of C<$arr[$time]>.
3289
3290 =item Out of memory for yacc stack
3291
3292 (F) The yacc parser wanted to grow its stack so it could continue
3293 parsing, but realloc() wouldn't give it more memory, virtual or
3294 otherwise.
3295
3296 =item '.' outside of string in pack
3297
3298 (F) The argument to a '.' in your template tried to move the working
3299 position to before the start of the packed string being built.
3300
3301 =item '@' outside of string in unpack
3302
3303 (F) You had a template that specified an absolute position outside
3304 the string being unpacked.  See L<perlfunc/pack>.
3305
3306 =item '@' outside of string with malformed UTF-8 in unpack
3307
3308 (F) You had a template that specified an absolute position outside
3309 the string being unpacked. The string being unpacked was also invalid
3310 UTF-8. See L<perlfunc/pack>.
3311
3312 =item Overloaded dereference did not return a reference
3313
3314 (F) An object with an overloaded dereference operator was dereferenced,
3315 but the overloaded operation did not return a reference. See
3316 L<overload>.
3317
3318 =item Overloaded qr did not return a REGEXP
3319
3320 (F) An object with a C<qr> overload was used as part of a match, but the
3321 overloaded operation didn't return a compiled regexp. See L<overload>.
3322
3323 =item %s package attribute may clash with future reserved word: %s
3324
3325 (W reserved) A lowercase attribute name was used that had a
3326 package-specific handler.  That name might have a meaning to Perl itself
3327 some day, even though it doesn't yet.  Perhaps you should use a
3328 mixed-case attribute name, instead.  See L<attributes>.
3329
3330 =item \p{} uses Unicode rules, not locale rules
3331
3332 (W) You compiled a regular expression that contained a Unicode property
3333 match (C<\p> or C<\P>), but the regular expression is also being told to
3334 use the run-time locale, not Unicode.  Instead, use a POSIX character
3335 class, which should know about the locale's rules.
3336 (See L<perlrecharclass/POSIX Character Classes>.)
3337
3338 Even if the run-time locale is ISO 8859-1 (Latin1), which is a subset of
3339 Unicode, some properties will give results that are not valid for that
3340 subset.
3341
3342 Here are a couple of examples to help you see what's going on.  If the
3343 locale is ISO 8859-7, the character at code point 0xD7 is the "GREEK
3344 CAPITAL LETTER CHI".  But in Unicode that code point means the
3345 "MULTIPLICATION SIGN" instead, and C<\p> always uses the Unicode
3346 meaning.  That means that C<\p{Alpha}> won't match, but C<[[:alpha:]]>
3347 should.  Only in the Latin1 locale are all the characters in the same
3348 positions as they are in Unicode.  But, even here, some properties give
3349 incorrect results.  An example is C<\p{Changes_When_Uppercased}> which
3350 is true for "LATIN SMALL LETTER Y WITH DIAERESIS", but since the upper
3351 case of that character is not in Latin1, in that locale it doesn't
3352 change when upper cased.
3353
3354 =item pack/unpack repeat count overflow
3355
3356 (F) You can't specify a repeat count so large that it overflows your
3357 signed integers.  See L<perlfunc/pack>.
3358
3359 =item page overflow
3360
3361 (W io) A single call to write() produced more lines than can fit on a
3362 page.  See L<perlform>.
3363
3364 =item panic: %s
3365
3366 (P) An internal error.
3367
3368 =item panic: attempt to call %s in %s
3369
3370 (P) One of the file test operators entered a code branch that calls
3371 an ACL related-function, but that function is not available on this
3372 platform.  Earlier checks mean that it should not be possible to
3373 enter this branch on this platform.
3374
3375 =item panic: ck_grep
3376
3377 (P) Failed an internal consistency check trying to compile a grep.
3378
3379 =item panic: ck_split
3380
3381 (P) Failed an internal consistency check trying to compile a split.
3382
3383 =item panic: corrupt saved stack index
3384
3385 (P) The savestack was requested to restore more localized values than
3386 there are in the savestack.
3387
3388 =item panic: del_backref
3389
3390 (P) Failed an internal consistency check while trying to reset a weak
3391 reference.
3392
3393 =item panic: Devel::DProf inconsistent subroutine return
3394
3395 (P) Devel::DProf called a subroutine that exited using goto(LABEL),
3396 last(LABEL) or next(LABEL). Leaving that way a subroutine called from
3397 an XSUB will lead very probably to a crash of the interpreter. This is
3398 a bug that will hopefully one day get fixed.
3399
3400 =item panic: die %s
3401
3402 (P) We popped the context stack to an eval context, and then discovered
3403 it wasn't an eval context.
3404
3405 =item panic: do_subst
3406
3407 (P) The internal pp_subst() routine was called with invalid operational
3408 data.
3409
3410 =item panic: do_trans_%s
3411
3412 (P) The internal do_trans routines were called with invalid operational
3413 data.
3414
3415 =item panic: fold_constants JMPENV_PUSH returned %d
3416
3417 (P) While attempting folding constants an exception other than an C<eval>
3418 failure was caught.
3419
3420 =item panic: frexp
3421
3422 (P) The library function frexp() failed, making printf("%f") impossible.
3423
3424 =item panic: goto
3425
3426 (P) We popped the context stack to a context with the specified label,
3427 and then discovered it wasn't a context we know how to do a goto in.
3428
3429 =item panic: gp_free failed to free glob pointer
3430
3431 (P) The internal routine used to clear a typeglob's entries tried
3432 repeatedly, but each time something re-created entries in the glob. Most
3433 likely the glob contains an object with a reference back to the glob and a
3434 destructor that adds a new object to the glob.
3435
3436 =item panic: hfreeentries failed to free hash
3437
3438 (P) The internal routine used to clear a hash's entries tried repeatedly,
3439 but each time something added more entries to the hash. Most likely the hash
3440 contains an object with a reference back to the hash and a destructor that
3441 adds a new object to the hash.
3442
3443 =item panic: INTERPCASEMOD
3444
3445 (P) The lexer got into a bad state at a case modifier.
3446
3447 =item panic: INTERPCONCAT
3448
3449 (P) The lexer got into a bad state parsing a string with brackets.
3450
3451 =item panic: kid popen errno read
3452
3453 (F) forked child returned an incomprehensible message about its errno.
3454
3455 =item panic: last
3456
3457 (P) We popped the context stack to a block context, and then discovered
3458 it wasn't a block context.
3459
3460 =item panic: leave_scope clearsv
3461
3462 (P) A writable lexical variable became read-only somehow within the
3463 scope.
3464
3465 =item panic: leave_scope inconsistency
3466
3467 (P) The savestack probably got out of sync.  At least, there was an
3468 invalid enum on the top of it.
3469
3470 =item panic: magic_killbackrefs
3471
3472 (P) Failed an internal consistency check while trying to reset all weak
3473 references to an object.
3474
3475 =item panic: malloc
3476
3477 (P) Something requested a negative number of bytes of malloc.
3478
3479 =item panic: memory wrap
3480
3481 (P) Something tried to allocate more memory than possible.
3482
3483 =item panic: pad_alloc
3484
3485 (P) The compiler got confused about which scratch pad it was allocating
3486 and freeing temporaries and lexicals from.
3487
3488 =item panic: pad_free curpad
3489
3490 (P) The compiler got confused about which scratch pad it was allocating
3491 and freeing temporaries and lexicals from.
3492
3493 =item panic: pad_free po
3494
3495 (P) An invalid scratch pad offset was detected internally.
3496
3497 =item panic: pad_reset curpad
3498
3499 (P) The compiler got confused about which scratch pad it was allocating
3500 and freeing temporaries and lexicals from.
3501
3502 =item panic: pad_sv po
3503
3504 (P) An invalid scratch pad offset was detected internally.
3505
3506 =item panic: pad_swipe curpad
3507
3508 (P) The compiler got confused about which scratch pad it was allocating
3509 and freeing temporaries and lexicals from.
3510
3511 =item panic: pad_swipe po
3512
3513 (P) An invalid scratch pad offset was detected internally.
3514
3515 =item panic: pp_iter
3516
3517 (P) The foreach iterator got called in a non-loop context frame.
3518
3519 =item panic: pp_match%s
3520
3521 (P) The internal pp_match() routine was called with invalid operational
3522 data.
3523
3524 =item panic: pp_split
3525
3526 (P) Something terrible went wrong in setting up for the split.
3527
3528 =item panic: realloc
3529
3530 (P) Something requested a negative number of bytes of realloc.
3531
3532 =item panic: restartop
3533
3534 (P) Some internal routine requested a goto (or something like it), and
3535 didn't supply the destination.
3536
3537 =item panic: return
3538
3539 (P) We popped the context stack to a subroutine or eval context, and
3540 then discovered it wasn't a subroutine or eval context.
3541
3542 =item panic: scan_num
3543
3544 (P) scan_num() got called on something that wasn't a number.
3545
3546 =item panic: sv_chop %s
3547
3548 (P) The sv_chop() routine was passed a position that is not within the
3549 scalar's string buffer.
3550
3551 =item panic: sv_insert
3552
3553 (P) The sv_insert() routine was told to remove more string than there
3554 was string.
3555
3556 =item panic: top_env
3557
3558 (P) The compiler attempted to do a goto, or something weird like that.
3559
3560 =item panic: unimplemented op %s (#%d) called
3561
3562 (P) The compiler is screwed up and attempted to use an op that isn't permitted
3563 at run time.
3564
3565 =item panic: utf16_to_utf8: odd bytelen
3566
3567 (P) Something tried to call utf16_to_utf8 with an odd (as opposed
3568 to even) byte length.
3569
3570 =item panic: utf16_to_utf8_reversed: odd bytelen
3571
3572 (P) Something tried to call utf16_to_utf8_reversed with an odd (as opposed
3573 to even) byte length.
3574
3575 =item panic: yylex
3576
3577 (P) The lexer got into a bad state while processing a case modifier.
3578
3579 =item Parsing code internal error (%s)
3580
3581 (F) Parsing code supplied by an extension violated the parser's API in
3582 a detectable way.
3583
3584 =item Pattern subroutine nesting without pos change exceeded limit in regex; marked by <-- HERE in m/%s/
3585
3586 (F) You used a pattern that uses too many nested subpattern calls without
3587 consuming any text. Restructure the pattern so text is consumed before the
3588 nesting limit is exceeded.
3589
3590 The <-- HERE shows in the regular expression about where the problem was
3591 discovered.
3592
3593 =item Parentheses missing around "%s" list
3594
3595 (W parenthesis) You said something like
3596
3597     my $foo, $bar = @_;
3598
3599 when you meant
3600
3601     my ($foo, $bar) = @_;
3602
3603 Remember that "my", "our", "local" and "state" bind tighter than comma.
3604
3605 =item C<-p> destination: %s
3606
3607 (F) An error occurred during the implicit output invoked by the C<-p>
3608 command-line switch.  (This output goes to STDOUT unless you've
3609 redirected it with select().)
3610
3611 =item (perhaps you forgot to load "%s"?)
3612
3613 (F) This is an educated guess made in conjunction with the message
3614 "Can't locate object method \"%s\" via package \"%s\"".  It often means
3615 that a method requires a package that has not been loaded.
3616
3617 =item Perl_my_%s() not available
3618
3619 (F) Your platform has very uncommon byte-order and integer size,
3620 so it was not possible to set up some or all fixed-width byte-order
3621 conversion functions.  This is only a problem when you're using the
3622 '<' or '>' modifiers in (un)pack templates.  See L<perlfunc/pack>.
3623
3624 =item Perl %s required--this is only version %s, stopped
3625
3626 (F) The module in question uses features of a version of Perl more
3627 recent than the currently running version.  How long has it been since
3628 you upgraded, anyway?  See L<perlfunc/require>.
3629
3630 =item PERL_SH_DIR too long
3631
3632 (F) An error peculiar to OS/2. PERL_SH_DIR is the directory to find the
3633 C<sh>-shell in.  See "PERL_SH_DIR" in L<perlos2>.
3634
3635 =item PERL_SIGNALS illegal: "%s"
3636
3637 See L<perlrun/PERL_SIGNALS> for legal values.
3638
3639 =item perl: warning: Setting locale failed.
3640
3641 (S) The whole warning message will look something like:
3642
3643         perl: warning: Setting locale failed.
3644         perl: warning: Please check that your locale settings:
3645                 LC_ALL = "En_US",
3646                 LANG = (unset)
3647             are supported and installed on your system.
3648         perl: warning: Falling back to the standard locale ("C").
3649
3650 Exactly what were the failed locale settings varies.  In the above the
3651 settings were that the LC_ALL was "En_US" and the LANG had no value.
3652 This error means that Perl detected that you and/or your operating
3653 system supplier and/or system administrator have set up the so-called
3654 locale system but Perl could not use those settings.  This was not
3655 dead serious, fortunately: there is a "default locale" called "C" that
3656 Perl can and will use, the script will be run.  Before you really fix
3657 the problem, however, you will get the same error message each time
3658 you run Perl.  How to really fix the problem can be found in
3659 L<perllocale> section B<LOCALE PROBLEMS>.
3660
3661 =item pid %x not a child
3662
3663 (W exec) A warning peculiar to VMS.  Waitpid() was asked to wait for a
3664 process which isn't a subprocess of the current process.  While this is
3665 fine from VMS' perspective, it's probably not what you intended.
3666
3667 =item 'P' must have an explicit size in unpack
3668
3669 (F) The unpack format P must have an explicit size, not "*".
3670
3671 =item POSIX class [:%s:] unknown in regex; marked by <-- HERE in m/%s/
3672
3673 (F) The class in the character class [: :] syntax is unknown.  The <-- HERE
3674 shows in the regular expression about where the problem was discovered.
3675 Note that the POSIX character classes do B<not> have the C<is> prefix
3676 the corresponding C interfaces have: in other words, it's C<[[:print:]]>,
3677 not C<isprint>.  See L<perlre>.
3678
3679 =item POSIX getpgrp can't take an argument
3680
3681 (F) Your system has POSIX getpgrp(), which takes no argument, unlike
3682 the BSD version, which takes a pid.
3683
3684 =item POSIX syntax [%s] belongs inside character classes in regex; marked by <-- HERE in m/%s/
3685
3686 (W regexp) The character class constructs [: :], [= =], and [. .]  go
3687 I<inside> character classes, the [] are part of the construct, for example:
3688 /[012[:alpha:]345]/.  Note that [= =] and [. .] are not currently
3689 implemented; they are simply placeholders for future extensions and will
3690 cause fatal errors.  The <-- HERE shows in the regular expression about
3691 where the problem was discovered.  See L<perlre>.
3692
3693 =item POSIX syntax [. .] is reserved for future extensions in regex; marked by <-- HERE in m/%s/
3694
3695 (F regexp) Within regular expression character classes ([]) the syntax
3696 beginning with "[." and ending with ".]" is reserved for future extensions.
3697 If you need to represent those character sequences inside a regular
3698 expression character class, just quote the square brackets with the
3699 backslash: "\[." and ".\]".  The <-- HERE shows in the regular expression
3700 about where the problem was discovered.  See L<perlre>.
3701
3702 =item POSIX syntax [= =] is reserved for future extensions in regex; marked by <-- HERE in m/%s/
3703
3704 (F) Within regular expression character classes ([]) the syntax beginning
3705 with "[=" and ending with "=]" is reserved for future extensions.  If you
3706 need to represent those character sequences inside a regular expression
3707 character class, just quote the square brackets with the backslash: "\[="
3708 and "=\]".  The <-- HERE shows in the regular expression about where the
3709 problem was discovered.  See L<perlre>.
3710
3711 =item Possible attempt to put comments in qw() list
3712
3713 (W qw) qw() lists contain items separated by whitespace; as with literal
3714 strings, comment characters are not ignored, but are instead treated as
3715 literal data.  (You may have used different delimiters than the
3716 parentheses shown here; braces are also frequently used.)
3717
3718 You probably wrote something like this:
3719
3720     @list = qw(
3721         a # a comment
3722         b # another comment
3723     );
3724
3725 when you should have written this:
3726
3727     @list = qw(
3728         a
3729         b
3730     );
3731
3732 If you really want comments, build your list the
3733 old-fashioned way, with quotes and commas:
3734
3735     @list = (
3736         'a',    # a comment
3737         'b',    # another comment
3738     );
3739
3740 =item Possible attempt to separate words with commas
3741
3742 (W qw) qw() lists contain items separated by whitespace; therefore
3743 commas aren't needed to separate the items.  (You may have used
3744 different delimiters than the parentheses shown here; braces are also
3745 frequently used.)
3746
3747 You probably wrote something like this:
3748
3749     qw! a, b, c !;
3750
3751 which puts literal commas into some of the list items.  Write it without
3752 commas if you don't want them to appear in your data:
3753
3754     qw! a b c !;
3755
3756 =item Possible memory corruption: %s overflowed 3rd argument
3757
3758 (F) An ioctl() or fcntl() returned more than Perl was bargaining for.
3759 Perl guesses a reasonable buffer size, but puts a sentinel byte at the
3760 end of the buffer just in case.  This sentinel byte got clobbered, and
3761 Perl assumes that memory is now corrupted.  See L<perlfunc/ioctl>.
3762
3763 =item Possible precedence problem on bitwise %c operator
3764
3765 (W precedence) Your program uses a bitwise logical operator in conjunction
3766 with a numeric comparison operator, like this :
3767
3768     if ($x & $y == 0) { ... }
3769
3770 This expression is actually equivalent to C<$x & ($y == 0)>, due to the
3771 higher precedence of C<==>. This is probably not what you want. (If you
3772 really meant to write this, disable the warning, or, better, put the
3773 parentheses explicitly and write C<$x & ($y == 0)>).
3774
3775 =item Possible unintended interpolation of %s in string
3776
3777 (W ambiguous) You said something like `@foo' in a double-quoted string
3778 but there was no array C<@foo> in scope at the time. If you wanted a
3779 literal @foo, then write it as \@foo; otherwise find out what happened
3780 to the array you apparently lost track of.
3781
3782 =item Possible unintended interpolation of $\ in regex
3783
3784 (W ambiguous) You said something like C<m/$\/> in a regex.
3785 The regex C<m/foo$\s+bar/m> translates to: match the word 'foo', the output
3786 record separator (see L<perlvar/$\>) and the letter 's' (one time or more)
3787 followed by the word 'bar'.
3788
3789 If this is what you intended then you can silence the warning by using 
3790 C<m/${\}/> (for example: C<m/foo${\}s+bar/>).
3791
3792 If instead you intended to match the word 'foo' at the end of the line
3793 followed by whitespace and the word 'bar' on the next line then you can use
3794 C<m/$(?)\/> (for example: C<m/foo$(?)\s+bar/>).
3795
3796 =item Precedence problem: open %s should be open(%s)
3797
3798 (S precedence) The old irregular construct
3799
3800     open FOO || die;
3801
3802 is now misinterpreted as
3803
3804     open(FOO || die);
3805
3806 because of the strict regularization of Perl 5's grammar into unary and
3807 list operators.  (The old open was a little of both.)  You must put
3808 parentheses around the filehandle, or use the new "or" operator instead
3809 of "||".
3810
3811 =item Premature end of script headers
3812
3813 See Server error.
3814
3815 =item printf() on closed filehandle %s
3816
3817 (W closed) The filehandle you're writing to got itself closed sometime
3818 before now.  Check your control flow.
3819
3820 =item print() on closed filehandle %s
3821
3822 (W closed) The filehandle you're printing on got itself closed sometime
3823 before now.  Check your control flow.
3824
3825 =item Process terminated by SIG%s
3826
3827 (W) This is a standard message issued by OS/2 applications, while *nix
3828 applications die in silence.  It is considered a feature of the OS/2
3829 port.  One can easily disable this by appropriate sighandlers, see
3830 L<perlipc/"Signals">.  See also "Process terminated by SIGTERM/SIGINT"
3831 in L<perlos2>.
3832
3833 =item Prototype after '%c' for %s : %s
3834
3835 (W illegalproto) A character follows % or @ in a prototype. This is useless,
3836 since % and @ gobble the rest of the subroutine arguments.
3837
3838 =item Prototype mismatch: %s vs %s
3839
3840 (S prototype) The subroutine being declared or defined had previously been
3841 declared or defined with a different function prototype.
3842
3843 =item Prototype not terminated
3844
3845 (F) You've omitted the closing parenthesis in a function prototype
3846 definition.
3847
3848 =item Quantifier follows nothing in regex; marked by <-- HERE in m/%s/
3849
3850 (F) You started a regular expression with a quantifier. Backslash it if you
3851 meant it literally. The <-- HERE shows in the regular expression about
3852 where the problem was discovered. See L<perlre>.
3853
3854 =item Quantifier in {,} bigger than %d in regex; marked by <-- HERE in m/%s/
3855
3856 (F) There is currently a limit to the size of the min and max values of the
3857 {min,max} construct. The <-- HERE shows in the regular expression about where
3858 the problem was discovered. See L<perlre>.
3859
3860 =item Quantifier unexpected on zero-length expression; marked by <-- HERE in m/%s/
3861
3862 (W regexp) You applied a regular expression quantifier in a place where
3863 it makes no sense, such as on a zero-width assertion.  Try putting the
3864 quantifier inside the assertion instead.  For example, the way to match
3865 "abc" provided that it is followed by three repetitions of "xyz" is
3866 C</abc(?=(?:xyz){3})/>, not C</abc(?=xyz){3}/>.
3867
3868 The <-- HERE shows in the regular expression about where the problem was
3869 discovered.
3870
3871 =item Range iterator outside integer range
3872
3873 (F) One (or both) of the numeric arguments to the range operator ".."
3874 are outside the range which can be represented by integers internally.
3875 One possible workaround is to force Perl to use magical string increment
3876 by prepending "0" to your numbers.
3877
3878 =item readdir() attempted on invalid dirhandle %s
3879
3880 (W io) The dirhandle you're reading from is either closed or not really
3881 a dirhandle.  Check your control flow.
3882
3883 =item readline() on closed filehandle %s
3884
3885 (W closed) The filehandle you're reading from got itself closed sometime
3886 before now.  Check your control flow.
3887
3888 =item read() on closed filehandle %s
3889
3890 (W closed) You tried to read from a closed filehandle.
3891
3892 =item read() on unopened filehandle %s
3893
3894 (W unopened) You tried to read from a filehandle that was never opened.
3895
3896 =item Reallocation too large: %x
3897
3898 (F) You can't allocate more than 64K on an MS-DOS machine.
3899
3900 =item realloc() of freed memory ignored
3901
3902 (S malloc) An internal routine called realloc() on something that had
3903 already been freed.
3904
3905 =item Recompile perl with B<-D>DEBUGGING to use B<-D> switch
3906
3907 (F debugging) You can't use the B<-D> option unless the code to produce
3908 the desired output is compiled into Perl, which entails some overhead,
3909 which is why it's currently left out of your copy.
3910
3911 =item Recursive inheritance detected in package '%s'
3912
3913 (F) While calculating the method resolution order (MRO) of a package, Perl
3914 believes it found an infinite loop in the C<@ISA> hierarchy.  This is a
3915 crude check that bails out after 100 levels of C<@ISA> depth.
3916
3917 =item Recursive inheritance detected while looking for method %s
3918
3919 (F) More than 100 levels of inheritance were encountered while invoking
3920 a method.  Probably indicates an unintended loop in your inheritance
3921 hierarchy.
3922
3923 =item Reference found where even-sized list expected
3924
3925 (W misc) You gave a single reference where Perl was expecting a list
3926 with an even number of elements (for assignment to a hash). This usually
3927 means that you used the anon hash constructor when you meant to use
3928 parens. In any case, a hash requires key/value B<pairs>.
3929
3930     %hash = { one => 1, two => 2, };    # WRONG
3931     %hash = [ qw/ an anon array / ];    # WRONG
3932     %hash = ( one => 1, two => 2, );    # right
3933     %hash = qw( one 1 two 2 );                  # also fine
3934
3935 =item Reference is already weak
3936
3937 (W misc) You have attempted to weaken a reference that is already weak.
3938 Doing so has no effect.
3939
3940 =item Reference miscount in sv_replace()
3941
3942 (W internal) The internal sv_replace() function was handed a new SV with
3943 a reference count of other than 1.
3944
3945 =item Reference to invalid group 0
3946
3947 (F) You used C<\g0> or similar in a regular expression. You may refer to
3948 capturing parentheses only with strictly positive integers (normal
3949 backreferences) or with strictly negative integers (relative
3950 backreferences), but using 0 does not make sense.
3951
3952 =item Reference to nonexistent group in regex; marked by <-- HERE in m/%s/
3953
3954 (F) You used something like C<\7> in your regular expression, but there are
3955 not at least seven sets of capturing parentheses in the expression. If you
3956 wanted to have the character with ordinal 7 inserted into the regular expression,
3957 prepend zeroes to make it three digits long: C<\007>
3958
3959 The <-- HERE shows in the regular expression about where the problem was
3960 discovered.
3961
3962 =item Reference to nonexistent or unclosed group in regex; marked by <-- HERE in m/%s/
3963
3964 (F) You used something like C<\g{-7}> in your regular expression, but there are
3965 not at least seven sets of closed capturing parentheses in the expression before
3966 where the C<\g{-7}> was located.
3967
3968 The <-- HERE shows in the regular expression about where the problem was
3969 discovered.
3970
3971 =item Reference to nonexistent named group in regex; marked by <-- HERE in m/%s/
3972
3973 (F) You used something like C<\k'NAME'> or C<< \k<NAME> >> in your regular
3974 expression, but there is no corresponding named capturing parentheses such
3975 as C<(?'NAME'...)> or C<(?<NAME>...). Check if the name has been spelled
3976 correctly both in the backreference and the declaration.
3977
3978 The <-- HERE shows in the regular expression about where the problem was
3979 discovered.
3980
3981 =item (?(DEFINE)....) does not allow branches in regex; marked by <-- HERE in m/%s/
3982
3983 (F) You used something like C<(?(DEFINE)...|..)> which is illegal. The
3984 most likely cause of this error is that you left out a parenthesis inside
3985 of the C<....> part.
3986
3987 The <-- HERE shows in the regular expression about where the problem was
3988 discovered.
3989
3990 =item regexp memory corruption
3991
3992 (P) The regular expression engine got confused by what the regular
3993 expression compiler gave it.
3994
3995 =item Regexp out of space
3996
3997 (P) A "can't happen" error, because safemalloc() should have caught it
3998 earlier.
3999
4000 =item Repeated format line will never terminate (~~ and @# incompatible)
4001
4002 (F) Your format contains the ~~ repeat-until-blank sequence and a
4003 numeric field that will never go blank so that the repetition never
4004 terminates. You might use ^# instead.  See L<perlform>.
4005
4006 =item Replacement list is longer than search list
4007
4008 (W misc) You have used a replacement list that is longer than the
4009 search list. So the additional elements in the replacement list
4010 are meaningless.
4011
4012 =item Reversed %s= operator
4013
4014 (W syntax) You wrote your assignment operator backwards.  The = must
4015 always comes last, to avoid ambiguity with subsequent unary operators.
4016
4017 =item rewinddir() attempted on invalid dirhandle %s
4018
4019 (W io) The dirhandle you tried to do a rewinddir() on is either closed or not
4020 really a dirhandle.  Check your control flow.
4021
4022 =item Scalars leaked: %d
4023
4024 (P) Something went wrong in Perl's internal bookkeeping of scalars:
4025 not all scalar variables were deallocated by the time Perl exited.
4026 What this usually indicates is a memory leak, which is of course bad,
4027 especially if the Perl program is intended to be long-running.
4028
4029 =item Scalar value @%s[%s] better written as $%s[%s]
4030
4031 (W syntax) You've used an array slice (indicated by @) to select a
4032 single element of an array.  Generally it's better to ask for a scalar
4033 value (indicated by $).  The difference is that C<$foo[&bar]> always
4034 behaves like a scalar, both when assigning to it and when evaluating its
4035 argument, while C<@foo[&bar]> behaves like a list when you assign to it,
4036 and provides a list context to its subscript, which can do weird things
4037 if you're expecting only one subscript.
4038
4039 On the other hand, if you were actually hoping to treat the array
4040 element as a list, you need to look into how references work, because
4041 Perl will not magically convert between scalars and lists for you.  See
4042 L<perlref>.
4043
4044 =item Scalar value @%s{%s} better written as $%s{%s}
4045
4046 (W syntax) You've used a hash slice (indicated by @) to select a single
4047 element of a hash.  Generally it's better to ask for a scalar value
4048 (indicated by $).  The difference is that C<$foo{&bar}> always behaves
4049 like a scalar, both when assigning to it and when evaluating its
4050 argument, while C<@foo{&bar}> behaves like a list when you assign to it,
4051 and provides a list context to its subscript, which can do weird things
4052 if you're expecting only one subscript.
4053
4054 On the other hand, if you were actually hoping to treat the hash element
4055 as a list, you need to look into how references work, because Perl will
4056 not magically convert between scalars and lists for you.  See
4057 L<perlref>.
4058
4059 =item Search pattern not terminated
4060
4061 (F) The lexer couldn't find the final delimiter of a // or m{}
4062 construct.  Remember that bracketing delimiters count nesting level.
4063 Missing the leading C<$> from a variable C<$m> may cause this error.
4064
4065 Note that since Perl 5.9.0 a // can also be the I<defined-or>
4066 construct, not just the empty search pattern.  Therefore code written
4067 in Perl 5.9.0 or later that uses the // as the I<defined-or> can be
4068 misparsed by pre-5.9.0 Perls as a non-terminated search pattern.
4069
4070 =item Search pattern not terminated or ternary operator parsed as search pattern
4071
4072 (F) The lexer couldn't find the final delimiter of a C<?PATTERN?>
4073 construct.
4074
4075 The question mark is also used as part of the ternary operator (as in
4076 C<foo ? 0 : 1>) leading to some ambiguous constructions being wrongly
4077 parsed. One way to disambiguate the parsing is to put parentheses around
4078 the conditional expression, i.e. C<(foo) ? 0 : 1>.
4079
4080 =item %sseek() on unopened filehandle
4081
4082 (W unopened) You tried to use the seek() or sysseek() function on a
4083 filehandle that was either never opened or has since been closed.
4084
4085 =item seekdir() attempted on invalid dirhandle %s
4086
4087 (W io) The dirhandle you are doing a seekdir() on is either closed or not
4088 really a dirhandle.  Check your control flow.
4089
4090 =item select not implemented
4091
4092 (F) This machine doesn't implement the select() system call.
4093
4094 =item Self-ties of arrays and hashes are not supported
4095
4096 (F) Self-ties are of arrays and hashes are not supported in
4097 the current implementation.
4098
4099 =item Semicolon seems to be missing
4100
4101 (W semicolon) A nearby syntax error was probably caused by a missing
4102 semicolon, or possibly some other missing operator, such as a comma.
4103
4104 =item semi-panic: attempt to dup freed string
4105
4106 (S internal) The internal newSVsv() routine was called to duplicate a
4107 scalar that had previously been marked as free.
4108
4109 =item sem%s not implemented
4110
4111 (F) You don't have System V semaphore IPC on your system.
4112
4113 =item send() on closed socket %s
4114
4115 (W closed) The socket you're sending to got itself closed sometime
4116 before now.  Check your control flow.
4117
4118 =item Sequence (? incomplete in regex; marked by <-- HERE in m/%s/
4119
4120 (F) A regular expression ended with an incomplete extension (?. The <-- HERE
4121 shows in the regular expression about where the problem was discovered. See
4122 L<perlre>.
4123
4124 =item Sequence (?%s...) not implemented in regex; marked by <-- HERE in m/%s/
4125
4126 (F) A proposed regular expression extension has the character reserved but
4127 has not yet been written. The <-- HERE shows in the regular expression about
4128 where the problem was discovered. See L<perlre>.
4129
4130 =item Sequence (?%s...) not recognized in regex; marked by <-- HERE in m/%s/
4131
4132 (F) You used a regular expression extension that doesn't make sense.  The
4133 <-- HERE shows in the regular expression about where the problem was
4134 discovered.  This happens when using the C<(?^...)> construct to tell
4135 Perl to use the default regular expression modifiers, and you
4136 redundantly specify a default modifier; or having a modifier that can't
4137 be turned off (such as C<"p"> or C<"l">) after a minus; or specifying
4138 more than one of the C<"d">, C<"l">, or C<"u"> modifiers.  For other
4139 causes, see L<perlre>.
4140
4141 =item Sequence \%s... not terminated in regex; marked by <-- HERE in m/%s/
4142
4143 (F) The regular expression expects a mandatory argument following the escape
4144 sequence and this has been omitted or incorrectly written.
4145
4146 =item Sequence (?#... not terminated in regex; marked by <-- HERE in m/%s/
4147
4148 (F) A regular expression comment must be terminated by a closing
4149 parenthesis.  Embedded parentheses aren't allowed.  The <-- HERE shows in
4150 the regular expression about where the problem was discovered. See
4151 L<perlre>.
4152
4153 =item Sequence (?{...}) not terminated or not {}-balanced in regex; marked by <-- HERE in m/%s/
4154
4155 (F) If the contents of a (?{...}) clause contains braces, they must balance
4156 for Perl to properly detect the end of the clause. The <-- HERE shows in
4157 the regular expression about where the problem was discovered. See
4158 L<perlre>.
4159
4160 =item "500 Server error"
4161
4162 See Server error.
4163
4164 =item Server error
4165
4166 (A) This is the error message generally seen in a browser window when trying
4167 to run a CGI program (including SSI) over the web. The actual error text
4168 varies widely from server to server. The most frequently-seen variants
4169 are "500 Server error", "Method (something) not permitted", "Document
4170 contains no data", "Premature end of script headers", and "Did not
4171 produce a valid header".
4172
4173 B<This is a CGI error, not a Perl error>.
4174
4175 You need to make sure your script is executable, is accessible by the
4176 user CGI is running the script under (which is probably not the user
4177 account you tested it under), does not rely on any environment variables
4178 (like PATH) from the user it isn't running under, and isn't in a
4179 location where the CGI server can't find it, basically, more or less.
4180 Please see the following for more information:
4181
4182         http://www.perl.org/CGI_MetaFAQ.html
4183         http://www.htmlhelp.org/faq/cgifaq.html
4184         http://www.w3.org/Security/Faq/
4185
4186 You should also look at L<perlfaq9>.
4187
4188 =item setegid() not implemented
4189
4190 (F) You tried to assign to C<$)>, and your operating system doesn't
4191 support the setegid() system call (or equivalent), or at least Configure
4192 didn't think so.
4193
4194 =item seteuid() not implemented
4195
4196 (F) You tried to assign to C<< $> >>, and your operating system doesn't
4197 support the seteuid() system call (or equivalent), or at least Configure
4198 didn't think so.
4199
4200 =item setpgrp can't take arguments
4201
4202 (F) Your system has the setpgrp() from BSD 4.2, which takes no
4203 arguments, unlike POSIX setpgid(), which takes a process ID and process
4204 group ID.
4205
4206 =item setrgid() not implemented
4207
4208 (F) You tried to assign to C<$(>, and your operating system doesn't
4209 support the setrgid() system call (or equivalent), or at least Configure
4210 didn't think so.
4211
4212 =item setruid() not implemented
4213
4214 (F) You tried to assign to C<$<>, and your operating system doesn't
4215 support the setruid() system call (or equivalent), or at least Configure
4216 didn't think so.
4217
4218 =item setsockopt() on closed socket %s
4219
4220 (W closed) You tried to set a socket option on a closed socket.  Did you
4221 forget to check the return value of your socket() call?  See
4222 L<perlfunc/setsockopt>.
4223
4224 =item Setuid/gid script is writable by world
4225
4226 (F) The setuid emulator won't run a script that is writable by the
4227 world, because the world might have written on it already.
4228
4229 =item Setuid script not plain file
4230
4231 (F) The setuid emulator won't run a script that isn't read from a file,
4232 but from a socket, a pipe or another device.
4233
4234 =item shm%s not implemented
4235
4236 (F) You don't have System V shared memory IPC on your system.
4237
4238 =item !=~ should be !~
4239
4240 (W syntax) The non-matching operator is !~, not !=~.  !=~ will be
4241 interpreted as the != (numeric not equal) and ~ (1's complement)
4242 operators: probably not what you intended.
4243
4244 =item <> should be quotes
4245
4246 (F) You wrote C<< require <file> >> when you should have written
4247 C<require 'file'>.
4248
4249 =item /%s/ should probably be written as "%s"
4250
4251 (W syntax) You have used a pattern where Perl expected to find a string,
4252 as in the first argument to C<join>.  Perl will treat the true or false
4253 result of matching the pattern against $_ as the string, which is
4254 probably not what you had in mind.
4255
4256 =item shutdown() on closed socket %s
4257
4258 (W closed) You tried to do a shutdown on a closed socket.  Seems a bit
4259 superfluous.
4260
4261 =item SIG%s handler "%s" not defined
4262
4263 (W signal) The signal handler named in %SIG doesn't, in fact, exist.
4264 Perhaps you put it into the wrong package?
4265
4266 =item Smart matching a non-overloaded object breaks encapsulation
4267
4268 (F) You should not use the C<~~> operator on an object that does not
4269 overload it: Perl refuses to use the object's underlying structure for
4270 the smart match.
4271
4272 =item sort is now a reserved word
4273
4274 (F) An ancient error message that almost nobody ever runs into anymore.
4275 But before sort was a keyword, people sometimes used it as a filehandle.
4276
4277 =item Sort subroutine didn't return single value
4278
4279 (F) A sort comparison subroutine may not return a list value with more
4280 or less than one element.  See L<perlfunc/sort>.
4281
4282 =item splice() offset past end of array
4283
4284 (W misc) You attempted to specify an offset that was past the end of
4285 the array passed to splice(). Splicing will instead commence at the end
4286 of the array, rather than past it. If this isn't what you want, try
4287 explicitly pre-extending the array by assigning $#array = $offset. See
4288 L<perlfunc/splice>.
4289
4290 =item Split loop
4291
4292 (P) The split was looping infinitely.  (Obviously, a split shouldn't
4293 iterate more times than there are characters of input, which is what
4294 happened.) See L<perlfunc/split>.
4295
4296 =item Statement unlikely to be reached
4297
4298 (W exec) You did an exec() with some statement after it other than a
4299 die().  This is almost always an error, because exec() never returns
4300 unless there was a failure.  You probably wanted to use system()
4301 instead, which does return.  To suppress this warning, put the exec() in
4302 a block by itself.
4303
4304 =item stat() on unopened filehandle %s
4305
4306 (W unopened) You tried to use the stat() function on a filehandle that
4307 was either never opened or has since been closed.
4308
4309 =item Stub found while resolving method "%s" overloading "%s" in package "%s"
4310
4311 (P) Overloading resolution over @ISA tree may be broken by importation
4312 stubs.  Stubs should never be implicitly created, but explicit calls to
4313 C<can> may break this.
4314
4315 =item Subroutine %s redefined
4316
4317 (W redefine) You redefined a subroutine.  To suppress this warning, say
4318
4319     {
4320         no warnings 'redefine';
4321         eval "sub name { ... }";
4322     }
4323
4324 =item Substitution loop
4325
4326 (P) The substitution was looping infinitely.  (Obviously, a substitution
4327 shouldn't iterate more times than there are characters of input, which
4328 is what happened.)  See the discussion of substitution in
4329 L<perlop/"Regexp Quote-Like Operators">.
4330
4331 =item Substitution pattern not terminated
4332
4333 (F) The lexer couldn't find the interior delimiter of an s/// or s{}{}
4334 construct.  Remember that bracketing delimiters count nesting level.
4335 Missing the leading C<$> from variable C<$s> may cause this error.
4336
4337 =item Substitution replacement not terminated
4338
4339 (F) The lexer couldn't find the final delimiter of an s/// or s{}{}
4340 construct.  Remember that bracketing delimiters count nesting level.
4341 Missing the leading C<$> from variable C<$s> may cause this error.
4342
4343 =item substr outside of string
4344
4345 (W substr),(F) You tried to reference a substr() that pointed outside of
4346 a string.  That is, the absolute value of the offset was larger than the
4347 length of the string.  See L<perlfunc/substr>.  This warning is fatal if
4348 substr is used in an lvalue context (as the left hand side of an
4349 assignment or as a subroutine argument for example).
4350
4351 =item sv_upgrade from type %d down to type %d
4352
4353 (P) Perl tried to force the upgrade an SV to a type which was actually
4354 inferior to its current type.
4355
4356 =item Switch (?(condition)... contains too many branches in regex; marked by <-- HERE in m/%s/
4357
4358 (F) A (?(condition)if-clause|else-clause) construct can have at most two
4359 branches (the if-clause and the else-clause). If you want one or both to
4360 contain alternation, such as using C<this|that|other>, enclose it in
4361 clustering parentheses:
4362
4363     (?(condition)(?:this|that|other)|else-clause)
4364
4365 The <-- HERE shows in the regular expression about where the problem was
4366 discovered. See L<perlre>.
4367
4368 =item Switch condition not recognized in regex; marked by <-- HERE in m/%s/
4369
4370 (F) If the argument to the (?(...)if-clause|else-clause) construct is a
4371 number, it can be only a number. The <-- HERE shows in the regular expression
4372 about where the problem was discovered. See L<perlre>.
4373
4374 =item switching effective %s is not implemented
4375
4376 (F) While under the C<use filetest> pragma, we cannot switch the real
4377 and effective uids or gids.
4378
4379 =item %s syntax
4380
4381 (F) The final summary message when a C<perl -c> succeeds.
4382
4383 =item syntax error
4384
4385 (F) Probably means you had a syntax error.  Common reasons include:
4386
4387     A keyword is misspelled.
4388     A semicolon is missing.
4389     A comma is missing.
4390     An opening or closing parenthesis is missing.
4391     An opening or closing brace is missing.
4392     A closing quote is missing.
4393
4394 Often there will be another error message associated with the syntax
4395 error giving more information.  (Sometimes it helps to turn on B<-w>.)
4396 The error message itself often tells you where it was in the line when
4397 it decided to give up.  Sometimes the actual error is several tokens
4398 before this, because Perl is good at understanding random input.
4399 Occasionally the line number may be misleading, and once in a blue moon
4400 the only way to figure out what's triggering the error is to call
4401 C<perl -c> repeatedly, chopping away half the program each time to see
4402 if the error went away.  Sort of the cybernetic version of S<20
4403 questions>.
4404
4405 =item syntax error at line %d: `%s' unexpected
4406
4407 (A) You've accidentally run your script through the Bourne shell instead
4408 of Perl.  Check the #! line, or manually feed your script into Perl
4409 yourself.
4410
4411 =item syntax error in file %s at line %d, next 2 tokens "%s"
4412
4413 (F) This error is likely to occur if you run a perl5 script through
4414 a perl4 interpreter, especially if the next 2 tokens are "use strict"
4415 or "my $var" or "our $var".
4416
4417 =item sysread() on closed filehandle %s
4418
4419 (W closed) You tried to read from a closed filehandle.
4420
4421 =item sysread() on unopened filehandle %s
4422
4423 (W unopened) You tried to read from a filehandle that was never opened.
4424
4425 =item System V %s is not implemented on this machine
4426
4427 (F) You tried to do something with a function beginning with "sem",
4428 "shm", or "msg" but that System V IPC is not implemented in your
4429 machine.  In some machines the functionality can exist but be
4430 unconfigured.  Consult your system support.
4431
4432 =item syswrite() on closed filehandle %s
4433
4434 (W closed) The filehandle you're writing to got itself closed sometime
4435 before now.  Check your control flow.
4436
4437 =item C<-T> and C<-B> not implemented on filehandles
4438
4439 (F) Perl can't peek at the stdio buffer of filehandles when it doesn't
4440 know about your kind of stdio.  You'll have to use a filename instead.
4441
4442 =item Target of goto is too deeply nested
4443
4444 (F) You tried to use C<goto> to reach a label that was too deeply nested
4445 for Perl to reach.  Perl is doing you a favor by refusing.
4446
4447 =item tell() on unopened filehandle
4448
4449 (W unopened) You tried to use the tell() function on a filehandle that
4450 was either never opened or has since been closed.
4451
4452 =item telldir() attempted on invalid dirhandle %s
4453
4454 (W io) The dirhandle you tried to telldir() is either closed or not really
4455 a dirhandle.  Check your control flow.
4456
4457 =item That use of $[ is unsupported
4458
4459 (F) Assignment to C<$[> is now strictly circumscribed, and interpreted
4460 as a compiler directive.  You may say only one of
4461
4462     $[ = 0;
4463     $[ = 1;
4464     ...
4465     local $[ = 0;
4466     local $[ = 1;
4467     ...
4468
4469 This is to prevent the problem of one module changing the array base out
4470 from under another module inadvertently.  See L<perlvar/$[>.
4471
4472 =item The crypt() function is unimplemented due to excessive paranoia
4473
4474 (F) Configure couldn't find the crypt() function on your machine,
4475 probably because your vendor didn't supply it, probably because they
4476 think the U.S. Government thinks it's a secret, or at least that they
4477 will continue to pretend that it is.  And if you quote me on that, I
4478 will deny it.
4479
4480 =item The %s function is unimplemented
4481
4482 (F) The function indicated isn't implemented on this architecture, according
4483 to the probings of Configure.
4484
4485 =item The stat preceding %s wasn't an lstat
4486
4487 (F) It makes no sense to test the current stat buffer for symbolic
4488 linkhood if the last stat that wrote to the stat buffer already went
4489 past the symlink to get to the real file.  Use an actual filename
4490 instead.
4491
4492 =item The 'unique' attribute may only be applied to 'our' variables
4493
4494 (F) This attribute was never supported on C<my> or C<sub> declarations.
4495
4496 =item This Perl can't reset CRTL environ elements (%s)
4497
4498 =item This Perl can't set CRTL environ elements (%s=%s)
4499
4500 (W internal) Warnings peculiar to VMS.  You tried to change or delete an
4501 element of the CRTL's internal environ array, but your copy of Perl
4502 wasn't built with a CRTL that contained the setenv() function.  You'll
4503 need to rebuild Perl with a CRTL that does, or redefine
4504 F<PERL_ENV_TABLES> (see L<perlvms>) so that the environ array isn't the
4505 target of the change to
4506 %ENV which produced the warning.
4507
4508 =item thread failed to start: %s
4509
4510 (W threads)(S) The entry point function of threads->create() failed for some reason.
4511
4512 =item times not implemented
4513
4514 (F) Your version of the C library apparently doesn't do times().  I
4515 suspect you're not running on Unix.
4516
4517 =item "-T" is on the #! line, it must also be used on the command line
4518
4519 (X) The #! line (or local equivalent) in a Perl script contains the
4520 B<-T> option (or the B<-t> option), but Perl was not invoked with B<-T> in its command line.
4521 This is an error because, by the time Perl discovers a B<-T> in a
4522 script, it's too late to properly taint everything from the environment.
4523 So Perl gives up.
4524
4525 If the Perl script is being executed as a command using the #!
4526 mechanism (or its local equivalent), this error can usually be fixed by
4527 editing the #! line so that the B<-%c> option is a part of Perl's first
4528 argument: e.g. change C<perl -n -%c> to C<perl -%c -n>.
4529
4530 If the Perl script is being executed as C<perl scriptname>, then the
4531 B<-%c> option must appear on the command line: C<perl -%c scriptname>.
4532
4533 =item To%s: illegal mapping '%s'
4534
4535 (F) You tried to define a customized To-mapping for lc(), lcfirst,
4536 uc(), or ucfirst() (or their string-inlined versions), but you
4537 specified an illegal mapping.
4538 See L<perlunicode/"User-Defined Character Properties">.
4539
4540 =item Too deeply nested ()-groups
4541
4542 (F) Your template contains ()-groups with a ridiculously deep nesting level.
4543
4544 =item Too few args to syscall
4545
4546 (F) There has to be at least one argument to syscall() to specify the
4547 system call to call, silly dilly.
4548
4549 =item Too late for "-%s" option
4550
4551 (X) The #! line (or local equivalent) in a Perl script contains the
4552 B<-M>, B<-m> or B<-C> option.
4553
4554 In the case of B<-M> and B<-m>, this is an error because those options are
4555 not intended for use inside scripts.  Use the C<use> pragma instead.
4556
4557 The B<-C> option only works if it is specified on the command line as well
4558 (with the same sequence of letters or numbers following). Either specify
4559 this option on the command line, or, if your system supports it, make your
4560 script executable and run it directly instead of passing it to perl. 
4561
4562 =item Too late to run %s block
4563
4564 (W void) A CHECK or INIT block is being defined during run time proper,
4565 when the opportunity to run them has already passed.  Perhaps you are
4566 loading a file with C<require> or C<do> when you should be using C<use>
4567 instead.  Or perhaps you should put the C<require> or C<do> inside a
4568 BEGIN block.
4569
4570 =item Too many args to syscall
4571
4572 (F) Perl supports a maximum of only 14 args to syscall().
4573
4574 =item Too many arguments for %s
4575
4576 (F) The function requires fewer arguments than you specified.
4577
4578 =item Too many )'s
4579
4580 (A) You've accidentally run your script through B<csh> instead of Perl.
4581 Check the #! line, or manually feed your script into Perl yourself.
4582
4583 =item Too many ('s
4584
4585 (A) You've accidentally run your script through B<csh> instead of Perl.
4586 Check the #! line, or manually feed your script into Perl yourself.
4587
4588 =item Trailing \ in regex m/%s/
4589
4590 (F) The regular expression ends with an unbackslashed backslash.
4591 Backslash it.   See L<perlre>.
4592
4593 =item Transliteration pattern not terminated
4594
4595 (F) The lexer couldn't find the interior delimiter of a tr/// or tr[][]
4596 or y/// or y[][] construct.  Missing the leading C<$> from variables
4597 C<$tr> or C<$y> may cause this error.
4598
4599 =item Transliteration replacement not terminated
4600
4601 (F) The lexer couldn't find the final delimiter of a tr///, tr[][],
4602 y/// or y[][] construct.
4603
4604 =item '%s' trapped by operation mask
4605
4606 (F) You tried to use an operator from a Safe compartment in which it's
4607 disallowed. See L<Safe>.
4608
4609 =item truncate not implemented
4610
4611 (F) Your machine doesn't implement a file truncation mechanism that
4612 Configure knows about.
4613
4614 =item Type of arg %d to %s must be %s (not %s)
4615
4616 (F) This function requires the argument in that position to be of a
4617 certain type.  Arrays must be @NAME or C<@{EXPR}>.  Hashes must be
4618 %NAME or C<%{EXPR}>.  No implicit dereferencing is allowed--use the
4619 {EXPR} forms as an explicit dereference.  See L<perlref>.
4620
4621 =item Type of argument to %s must be hashref or arrayref
4622
4623 (F) You called C<keys>, C<values> or C<each> with an argument that was
4624 expected to be a reference to a hash or a reference to an array.
4625
4626 =item umask not implemented
4627
4628 (F) Your machine doesn't implement the umask function and you tried to
4629 use it to restrict permissions for yourself (EXPR & 0700).
4630
4631 =item Unable to create sub named "%s"
4632
4633 (F) You attempted to create or access a subroutine with an illegal name.
4634
4635 =item Unbalanced context: %d more PUSHes than POPs
4636
4637 (W internal) The exit code detected an internal inconsistency in how
4638 many execution contexts were entered and left.
4639
4640 =item Unbalanced saves: %d more saves than restores
4641
4642 (W internal) The exit code detected an internal inconsistency in how
4643 many values were temporarily localized.
4644
4645 =item Unbalanced scopes: %d more ENTERs than LEAVEs
4646
4647 (W internal) The exit code detected an internal inconsistency in how
4648 many blocks were entered and left.
4649
4650 =item Unbalanced tmps: %d more allocs than frees
4651
4652 (W internal) The exit code detected an internal inconsistency in how
4653 many mortal scalars were allocated and freed.
4654
4655 =item Undefined format "%s" called
4656
4657 (F) The format indicated doesn't seem to exist.  Perhaps it's really in
4658 another package?  See L<perlform>.
4659
4660 =item Undefined sort subroutine "%s" called
4661
4662 (F) The sort comparison routine specified doesn't seem to exist.
4663 Perhaps it's in a different package?  See L<perlfunc/sort>.
4664
4665 =item Undefined subroutine &%s called
4666
4667 (F) The subroutine indicated hasn't been defined, or if it was, it has
4668 since been undefined.
4669
4670 =item Undefined subroutine called
4671
4672 (F) The anonymous subroutine you're trying to call hasn't been defined,
4673 or if it was, it has since been undefined.
4674
4675 =item Undefined subroutine in sort
4676
4677 (F) The sort comparison routine specified is declared but doesn't seem
4678 to have been defined yet.  See L<perlfunc/sort>.
4679
4680 =item Undefined top format "%s" called
4681
4682 (F) The format indicated doesn't seem to exist.  Perhaps it's really in
4683 another package?  See L<perlform>.
4684
4685 =item Undefined value assigned to typeglob
4686
4687 (W misc) An undefined value was assigned to a typeglob, a la
4688 C<*foo = undef>.  This does nothing.  It's possible that you really mean
4689 C<undef *foo>.
4690
4691 =item %s: Undefined variable
4692
4693 (A) You've accidentally run your script through B<csh> instead of Perl.
4694 Check the #! line, or manually feed your script into Perl yourself.
4695
4696 =item unexec of %s into %s failed!
4697
4698 (F) The unexec() routine failed for some reason.  See your local FSF
4699 representative, who probably put it there in the first place.
4700
4701 =item Unicode non-character U+%X is illegal for open interchange
4702
4703 (W utf8) Certain codepoints, such as U+FFFE and U+FFFF, are defined by the
4704 Unicode standard to be non-characters. Those are legal codepoints, but are
4705 reserved for internal use; so, applications shouldn't attempt to exchange
4706 them.  If you know what you are doing you can turn
4707 off this warning by C<no warnings 'utf8';>.
4708
4709 =item Unknown BYTEORDER
4710
4711 (F) There are no byte-swapping functions for a machine with this byte
4712 order.
4713
4714 =item Unknown open() mode '%s'
4715
4716 (F) The second argument of 3-argument open() is not among the list
4717 of valid modes: C<< < >>, C<< > >>, C<<< >> >>>, C<< +< >>,
4718 C<< +> >>, C<<< +>> >>>, C<-|>, C<|->, C<< <& >>, C<< >& >>.
4719
4720 =item Unknown PerlIO layer "%s"
4721
4722 (W layer) An attempt was made to push an unknown layer onto the Perl I/O
4723 system.  (Layers take care of transforming data between external and
4724 internal representations.)  Note that some layers, such as C<mmap>,
4725 are not supported in all environments.  If your program didn't
4726 explicitly request the failing operation, it may be the result of the
4727 value of the environment variable PERLIO.
4728
4729 =item Unknown process %x sent message to prime_env_iter: %s
4730
4731 (P) An error peculiar to VMS.  Perl was reading values for %ENV before
4732 iterating over it, and someone else stuck a message in the stream of
4733 data Perl expected.  Someone's very confused, or perhaps trying to
4734 subvert Perl's population of %ENV for nefarious purposes.
4735
4736 =item Unknown "re" subpragma '%s' (known ones are: %s)
4737
4738 (W) You tried to use an unknown subpragma of the "re" pragma.
4739
4740 =item Unknown switch condition (?(%s in regex; marked by <-- HERE in m/%s/
4741
4742 (F) The condition part of a (?(condition)if-clause|else-clause) construct
4743 is not known. The condition may be lookahead or lookbehind (the condition
4744 is true if the lookahead or lookbehind is true), a (?{...})  construct (the
4745 condition is true if the code evaluates to a true value), or a number (the
4746 condition is true if the set of capturing parentheses named by the number
4747 matched).
4748
4749 The <-- HERE shows in the regular expression about where the problem was
4750 discovered.  See L<perlre>.
4751
4752 =item Unknown Unicode option letter '%c'
4753
4754 (F) You specified an unknown Unicode option.  See L<perlrun> documentation
4755 of the C<-C> switch for the list of known options.
4756
4757 =item Unknown Unicode option value %x
4758
4759 (F) You specified an unknown Unicode option.  See L<perlrun> documentation
4760 of the C<-C> switch for the list of known options.
4761
4762 =item Unknown warnings category '%s'
4763
4764 (F) An error issued by the C<warnings> pragma. You specified a warnings
4765 category that is unknown to perl at this point.
4766
4767 Note that if you want to enable a warnings category registered by a module
4768 (e.g. C<use warnings 'File::Find'>), you must have imported this module
4769
4770 =item Unknown verb pattern '%s' in regex; marked by <-- HERE in m/%s/
4771
4772 (F) You either made a typo or have incorrectly put a C<*> quantifier
4773 after an open brace in your pattern.  Check the pattern and review
4774 L<perlre> for details on legal verb patterns.
4775
4776 first.
4777
4778 =item unmatched [ in regex; marked by <-- HERE in m/%s/
4779
4780 (F) The brackets around a character class must match. If you wish to
4781 include a closing bracket in a character class, backslash it or put it
4782 first. The <-- HERE shows in the regular expression about where the problem
4783 was discovered. See L<perlre>.
4784
4785 =item unmatched ( in regex; marked by <-- HERE in m/%s/
4786
4787 (F) Unbackslashed parentheses must always be balanced in regular
4788 expressions. If you're a vi user, the % key is valuable for finding the
4789 matching parenthesis. The <-- HERE shows in the regular expression about
4790 where the problem was discovered. See L<perlre>.
4791
4792 =item Unmatched right %s bracket
4793
4794 (F) The lexer counted more closing curly or square brackets than opening
4795 ones, so you're probably missing a matching opening bracket.  As a
4796 general rule, you'll find the missing one (so to speak) near the place
4797 you were last editing.
4798
4799 =item Unquoted string "%s" may clash with future reserved word
4800
4801 (W reserved) You used a bareword that might someday be claimed as a
4802 reserved word.  It's best to put such a word in quotes, or capitalize it
4803 somehow, or insert an underbar into it.  You might also declare it as a
4804 subroutine.
4805
4806 =item Unrecognized character %s; marked by <-- HERE after %s near column %d
4807
4808 (F) The Perl parser has no idea what to do with the specified character
4809 in your Perl script (or eval) near the specified column.  Perhaps you tried 
4810 to run a compressed script, a binary program, or a directory as a Perl program.
4811
4812 =item Unrecognized escape \%c in character class passed through in regex; marked by <-- HERE in m/%s/
4813
4814 (W regexp) You used a backslash-character combination which is not
4815 recognized by Perl inside character classes.  The character was
4816 understood literally, but this may change in a future version of Perl.
4817 The <-- HERE shows in the regular expression about where the
4818 escape was discovered.
4819
4820 =item Unrecognized escape \%c passed through
4821
4822 (W misc) You used a backslash-character combination which is not
4823 recognized by Perl.  The character was understood literally, but this may
4824 change in a future version of Perl.
4825
4826 =item Unrecognized escape \%s passed through in regex; marked by <-- HERE in m/%s/
4827
4828 (W regexp) You used a backslash-character combination which is not
4829 recognized by Perl.  The character(s) were understood literally, but this may
4830 change in a future version of Perl.
4831 The <-- HERE shows in the regular expression about where the
4832 escape was discovered.
4833
4834 =item Unrecognized signal name "%s"
4835
4836 (F) You specified a signal name to the kill() function that was not
4837 recognized.  Say C<kill -l> in your shell to see the valid signal names
4838 on your system.
4839
4840 =item Unrecognized switch: -%s  (-h will show valid options)
4841
4842 (F) You specified an illegal option to Perl.  Don't do that.  (If you
4843 think you didn't do that, check the #! line to see if it's supplying the
4844 bad switch on your behalf.)
4845
4846 =item Unsuccessful %s on filename containing newline
4847
4848 (W newline) A file operation was attempted on a filename, and that
4849 operation failed, PROBABLY because the filename contained a newline,
4850 PROBABLY because you forgot to chomp() it off.  See L<perlfunc/chomp>.
4851
4852 =item Unsupported directory function "%s" called
4853
4854 (F) Your machine doesn't support opendir() and readdir().
4855
4856 =item Unsupported function %s
4857
4858 (F) This machine doesn't implement the indicated function, apparently.
4859 At least, Configure doesn't think so.
4860
4861 =item Unsupported function fork
4862
4863 (F) Your version of executable does not support forking.
4864
4865 Note that under some systems, like OS/2, there may be different flavors
4866 of Perl executables, some of which may support fork, some not. Try
4867 changing the name you call Perl by to C<perl_>, C<perl__>, and so on.
4868
4869 =item Unsupported script encoding %s
4870
4871 (F) Your program file begins with a Unicode Byte Order Mark (BOM) which
4872 declares it to be in a Unicode encoding that Perl cannot read.
4873
4874 =item Unsupported socket function "%s" called
4875
4876 (F) Your machine doesn't support the Berkeley socket mechanism, or at
4877 least that's what Configure thought.
4878
4879 =item Unterminated attribute list
4880
4881 (F) The lexer found something other than a simple identifier at the
4882 start of an attribute, and it wasn't a semicolon or the start of a
4883 block.  Perhaps you terminated the parameter list of the previous
4884 attribute too soon.  See L<attributes>.
4885
4886 =item Unterminated attribute parameter in attribute list
4887
4888 (F) The lexer saw an opening (left) parenthesis character while parsing
4889 an attribute list, but the matching closing (right) parenthesis
4890 character was not found.  You may need to add (or remove) a backslash
4891 character to get your parentheses to balance.  See L<attributes>.
4892
4893 =item Unterminated compressed integer
4894
4895 (F) An argument to unpack("w",...) was incompatible with the BER
4896 compressed integer format and could not be converted to an integer.
4897 See L<perlfunc/pack>.
4898
4899 =item Unterminated verb pattern in regex; marked by <-- HERE in m/%s/
4900
4901 (F) You used a pattern of the form C<(*VERB)> but did not terminate
4902 the pattern with a C<)>. Fix the pattern and retry.
4903
4904 =item Unterminated verb pattern argument in regex; marked by <-- HERE in m/%s/
4905
4906 (F) You used a pattern of the form C<(*VERB:ARG)> but did not terminate
4907 the pattern with a C<)>. Fix the pattern and retry.
4908
4909 =item Unterminated \g{...} pattern in regex; marked by <-- HERE in m/%s/
4910
4911 (F) You missed a close brace on a \g{..} pattern (group reference) in
4912 a regular expression. Fix the pattern and retry.
4913
4914 =item Unterminated <> operator
4915
4916 (F) The lexer saw a left angle bracket in a place where it was expecting
4917 a term, so it's looking for the corresponding right angle bracket, and
4918 not finding it.  Chances are you left some needed parentheses out
4919 earlier in the line, and you really meant a "less than".
4920
4921 =item untie attempted while %d inner references still exist
4922
4923 (W untie) A copy of the object returned from C<tie> (or C<tied>) was
4924 still valid when C<untie> was called.
4925
4926 =item Usage: POSIX::%s(%s)
4927
4928 (F) You called a POSIX function with incorrect arguments.
4929 See L<POSIX/FUNCTIONS> for more information.
4930
4931 =item Usage: Win32::%s(%s)
4932
4933 (F) You called a Win32 function with incorrect arguments.
4934 See L<Win32> for more information.
4935
4936 =item Useless (?-%s) - don't use /%s modifier in regex; marked by <-- HERE in m/%s/
4937
4938 (W regexp) You have used an internal modifier such as (?-o) that has no
4939 meaning unless removed from the entire regexp:
4940
4941     if ($string =~ /(?-o)$pattern/o) { ... }
4942
4943 must be written as
4944
4945     if ($string =~ /$pattern/) { ... }
4946
4947 The <-- HERE shows in the regular expression about
4948 where the problem was discovered. See L<perlre>.
4949
4950 =item Useless localization of %s
4951
4952 (W syntax) The localization of lvalues such as C<local($x=10)> is
4953 legal, but in fact the local() currently has no effect. This may change at
4954 some point in the future, but in the meantime such code is discouraged.
4955
4956 =item Useless (?%s) - use /%s modifier in regex; marked by <-- HERE in m/%s/
4957
4958 (W regexp) You have used an internal modifier such as (?o) that has no
4959 meaning unless applied to the entire regexp:
4960
4961     if ($string =~ /(?o)$pattern/) { ... }
4962
4963 must be written as
4964
4965     if ($string =~ /$pattern/o) { ... }
4966
4967 The <-- HERE shows in the regular expression about
4968 where the problem was discovered. See L<perlre>.
4969
4970 =item Useless use of /d modifier in transliteration operator
4971
4972 (W misc) You have used the /d modifier where the searchlist has the
4973 same length as the replacelist. See L<perlop> for more information
4974 about the /d modifier.
4975
4976 =item Useless use of %s in void context
4977
4978 (W void) You did something without a side effect in a context that does
4979 nothing with the return value, such as a statement that doesn't return a
4980 value from a block, or the left side of a scalar comma operator.  Very
4981 often this points not to stupidity on your part, but a failure of Perl
4982 to parse your program the way you thought it would.  For example, you'd
4983 get this if you mixed up your C precedence with Python precedence and
4984 said
4985
4986     $one, $two = 1, 2;
4987
4988 when you meant to say
4989
4990     ($one, $two) = (1, 2);
4991
4992 Another common error is to use ordinary parentheses to construct a list
4993 reference when you should be using square or curly brackets, for
4994 example, if you say
4995
4996     $array = (1,2);
4997
4998 when you should have said
4999
5000     $array = [1,2];
5001
5002 The square brackets explicitly turn a list value into a scalar value,
5003 while parentheses do not.  So when a parenthesized list is evaluated in
5004 a scalar context, the comma is treated like C's comma operator, which
5005 throws away the left argument, which is not what you want.  See
5006 L<perlref> for more on this.
5007
5008 This warning will not be issued for numerical constants equal to 0 or 1
5009 since they are often used in statements like
5010
5011     1 while sub_with_side_effects();
5012
5013 String constants that would normally evaluate to 0 or 1 are warned
5014 about.
5015
5016 =item Useless use of "re" pragma
5017
5018 (W) You did C<use re;> without any arguments.   That isn't very useful.
5019
5020 =item Useless use of sort in scalar context
5021
5022 (W void) You used sort in scalar context, as in :
5023
5024     my $x = sort @y;
5025
5026 This is not very useful, and perl currently optimizes this away.
5027
5028 =item Useless use of %s with no values
5029
5030 (W syntax) You used the push() or unshift() function with no arguments
5031 apart from the array, like C<push(@x)> or C<unshift(@foo)>. That won't
5032 usually have any effect on the array, so is completely useless. It's
5033 possible in principle that push(@tied_array) could have some effect
5034 if the array is tied to a class which implements a PUSH method. If so,
5035 you can write it as C<push(@tied_array,())> to avoid this warning.
5036
5037 =item "use" not allowed in expression
5038
5039 (F) The "use" keyword is recognized and executed at compile time, and
5040 returns no useful value.  See L<perlmod>.
5041
5042 =item Use of assignment to $[ is deprecated
5043
5044 (D deprecated) The C<$[> variable (index of the first element in an array)
5045 is deprecated. See L<perlvar/"$[">.
5046
5047 =item Use of bare << to mean <<"" is deprecated
5048
5049 (D deprecated) You are now encouraged to use the explicitly quoted
5050 form if you wish to use an empty line as the terminator of the here-document.
5051
5052 =item Use of comma-less variable list is deprecated
5053
5054 (D deprecated) The values you give to a format should be
5055 separated by commas, not just aligned on a line.
5056
5057 =item Use of chdir('') or chdir(undef) as chdir() deprecated
5058
5059 (D deprecated) chdir() with no arguments is documented to change to
5060 $ENV{HOME} or $ENV{LOGDIR}.  chdir(undef) and chdir('') share this
5061 behavior, but that has been deprecated.  In future versions they
5062 will simply fail.
5063
5064 Be careful to check that what you pass to chdir() is defined and not
5065 blank, else you might find yourself in your home directory.
5066
5067 =item Use of /c modifier is meaningless in s///
5068
5069 (W regexp) You used the /c modifier in a substitution.  The /c
5070 modifier is not presently meaningful in substitutions.
5071
5072 =item Use of /c modifier is meaningless without /g
5073
5074 (W regexp) You used the /c modifier with a regex operand, but didn't
5075 use the /g modifier.  Currently, /c is meaningful only when /g is
5076 used.  (This may change in the future.)
5077
5078 =item Use of := for an empty attribute list is not allowed
5079
5080 (F) The construction C<my $x := 42> used to parse as equivalent to
5081 C<my $x : = 42> (applying an empty attribute list to C<$x>).
5082 This construct was deprecated in 5.12.0, and has now been made a syntax
5083 error, so C<:=> can be reclaimed as a new operator in the future.
5084
5085 If you need an empty attribute list, for example in a code generator, add
5086 a space before the C<=>.
5087
5088 =item Use of ?PATTERN? without explicit operator is deprecated
5089
5090 (D deprecated) You have written something like C<?\w?>, for a regular
5091 expression that matches only once.  Starting this term directly with
5092 the question mark delimiter is now deprecated, so that the question mark
5093 will be available for use in new operators in the future.  Write C<m?\w?>
5094 instead, explicitly using the C<m> operator: the question mark delimiter
5095 still invokes match-once behaviour.
5096
5097 =item Use of freed value in iteration
5098
5099 (F) Perhaps you modified the iterated array within the loop?
5100 This error is typically caused by code like the following:
5101
5102     @a = (3,4);
5103     @a = () for (1,2,@a);
5104
5105 You are not supposed to modify arrays while they are being iterated over.
5106 For speed and efficiency reasons, Perl internally does not do full
5107 reference-counting of iterated items, hence deleting such an item in the
5108 middle of an iteration causes Perl to see a freed value.
5109
5110 =item Use of *glob{FILEHANDLE} is deprecated
5111
5112 (D deprecated) You are now encouraged to use the shorter *glob{IO} form
5113 to access the filehandle slot within a typeglob.
5114
5115 =item Use of /g modifier is meaningless in split
5116
5117 (W regexp) You used the /g modifier on the pattern for a C<split>
5118 operator.  Since C<split> always tries to match the pattern
5119 repeatedly, the C</g> has no effect.
5120
5121 =item Use of "goto" to jump into a construct is deprecated
5122
5123 (D deprecated) Using C<goto> to jump from an outer scope into an inner
5124 scope is deprecated and should be avoided.
5125
5126 =item Use of inherited AUTOLOAD for non-method %s() is deprecated
5127
5128 (D deprecated) As an (ahem) accidental feature, C<AUTOLOAD> subroutines
5129 are looked up as methods (using the C<@ISA> hierarchy) even when the
5130 subroutines to be autoloaded were called as plain functions (e.g.
5131 C<Foo::bar()>), not as methods (e.g. C<< Foo->bar() >> or C<<
5132 $obj->bar() >>).
5133
5134 This bug will be rectified in future by using method lookup only for
5135 methods' C<AUTOLOAD>s.  However, there is a significant base of existing
5136 code that may be using the old behavior.  So, as an interim step, Perl
5137 currently issues an optional warning when non-methods use inherited
5138 C<AUTOLOAD>s.
5139
5140 The simple rule is:  Inheritance will not work when autoloading
5141 non-methods.  The simple fix for old code is:  In any module that used
5142 to depend on inheriting C<AUTOLOAD> for non-methods from a base class
5143 named C<BaseClass>, execute C<*AUTOLOAD = \&BaseClass::AUTOLOAD> during
5144 startup.
5145
5146 In code that currently says C<use AutoLoader; @ISA = qw(AutoLoader);>
5147 you should remove AutoLoader from @ISA and change C<use AutoLoader;> to
5148 C<use AutoLoader 'AUTOLOAD';>.
5149
5150 =item Use of %s in printf format not supported
5151
5152 (F) You attempted to use a feature of printf that is accessible from
5153 only C.  This usually means there's a better way to do it in Perl.
5154
5155 =item Use of %s is deprecated
5156
5157 (D deprecated) The construct indicated is no longer recommended for use,
5158 generally because there's a better way to do it, and also because the
5159 old way has bad side effects.
5160
5161 =item Use of %s on a handle without * is deprecated
5162
5163 (D deprecated) You used C<tie>, C<tied> or C<untie> on a scalar but that
5164 scalar happens to hold a typeglob, which means its filehandle will
5165 be tied. If you mean to tie a handle, use an explicit * as in
5166 C<tie *$handle>.
5167
5168 This is a long-standing bug that will be removed in Perl 5.16, as
5169 there is currently no way to tie the scalar itself when it holds
5170 a typeglob, and no way to untie a scalar that has had a typeglob
5171 assigned to it.
5172
5173 =item Use of -l on filehandle %s
5174
5175 (W io) A filehandle represents an opened file, and when you opened the file
5176 it already went past any symlink you are presumably trying to look for.
5177 The operation returned C<undef>.  Use a filename instead.
5178
5179 =item Use of "package" with no arguments is deprecated
5180
5181 (D deprecated) You used the C<package> keyword without specifying a package
5182 name. So no namespace is current at all. Using this can cause many
5183 otherwise reasonable constructs to fail in baffling ways. C<use strict;>
5184 instead.
5185
5186 =item Use of qw(...) as parentheses is deprecated
5187
5188 (D deprecated) You have something like C<foreach $x qw(a b c) {...}>,
5189 using a C<qw(...)> list literal where a parenthesised expression is
5190 expected.  Historically the parser fooled itself into thinking that
5191 C<qw(...)> literals were always enclosed in parentheses, and as a result
5192 you could sometimes omit parentheses around them.  (You could never do
5193 the C<foreach qw(a b c) {...}> that you might have expected, though.)
5194 The parser no longer lies to itself in this way.  Wrap the list literal
5195 in parentheses, like C<foreach $x (qw(a b c)) {...}>.
5196
5197 =item Use of reference "%s" as array index
5198
5199 (W misc) You tried to use a reference as an array index; this probably
5200 isn't what you mean, because references in numerical context tend
5201 to be huge numbers, and so usually indicates programmer error.
5202
5203 If you really do mean it, explicitly numify your reference, like so:
5204 C<$array[0+$ref]>.  This warning is not given for overloaded objects,
5205 either, because you can overload the numification and stringification
5206 operators and then you presumably know what you are doing.
5207
5208 =item Use of reserved word "%s" is deprecated
5209
5210 (D deprecated) The indicated bareword is a reserved word.  Future
5211 versions of perl may use it as a keyword, so you're better off either
5212 explicitly quoting the word in a manner appropriate for its context of
5213 use, or using a different name altogether.  The warning can be
5214 suppressed for subroutine names by either adding a C<&> prefix, or using
5215 a package qualifier, e.g. C<&our()>, or C<Foo::our()>.
5216
5217 =item Use of tainted arguments in %s is deprecated
5218
5219 (W taint, deprecated) You have supplied C<system()> or C<exec()> with multiple
5220 arguments and at least one of them is tainted.  This used to be allowed
5221 but will become a fatal error in a future version of perl.  Untaint your
5222 arguments.  See L<perlsec>.
5223
5224 =item Use of uninitialized value%s
5225
5226 (W uninitialized) An undefined value was used as if it were already
5227 defined.  It was interpreted as a "" or a 0, but maybe it was a mistake.
5228 To suppress this warning assign a defined value to your variables.
5229
5230 To help you figure out what was undefined, perl will try to tell you the
5231 name of the variable (if any) that was undefined. In some cases it cannot
5232 do this, so it also tells you what operation you used the undefined value
5233 in.  Note, however, that perl optimizes your program and the operation
5234 displayed in the warning may not necessarily appear literally in your
5235 program.  For example, C<"that $foo"> is usually optimized into C<"that "
5236 . $foo>, and the warning will refer to the C<concatenation (.)> operator,
5237 even though there is no C<.> in your program.
5238
5239 =item Using a hash as a reference is deprecated
5240
5241 (D deprecated) You tried to use a hash as a reference, as in
5242 C<< %foo->{"bar"} >> or C<< %$ref->{"hello"} >>.  Versions of perl <= 5.6.1
5243 used to allow this syntax, but shouldn't have. It is now deprecated, and will
5244 be removed in a future version.
5245
5246 =item Using an array as a reference is deprecated
5247
5248 (D deprecated) You tried to use an array as a reference, as in
5249 C<< @foo->[23] >> or C<< @$ref->[99] >>.  Versions of perl <= 5.6.1 used to
5250 allow this syntax, but shouldn't have. It is now deprecated, and will be
5251 removed in a future version.
5252
5253 =item Using !~ with %s doesn't make sense
5254
5255 (F) Using the C<!~> operator with C<s///r>, C<tr///r> or C<y///r> is
5256 currently reserved for future use, as the exact behaviour has not
5257 been decided. (Simply returning the boolean opposite of the
5258 modified string is usually not particularly useful.)
5259
5260 =item Using just the first character returned by \N{} in character class
5261
5262 (W) A charnames handler may return a sequence of more than one character.
5263 Currently all but the first one are discarded when used in a regular
5264 expression pattern bracketed character class.
5265
5266 =item Using just the first characters returned by \N{}
5267
5268 (W) A charnames handler may return a sequence of characters.  There is a finite
5269 limit as to the number of characters that can be used, which this sequence
5270 exceeded.  In the message, the characters in the sequence are separated by
5271 dots, and each is shown by its ordinal in hex.  Anything to the left of the
5272 C<HERE> was retained; anything to the right was discarded.
5273
5274 =item Unicode surrogate U+%X is illegal in UTF-8
5275
5276 =item UTF-16 surrogate U+%X
5277
5278 (W utf8) You had a UTF-16 surrogate in a context where they are
5279 not considered acceptable.  These code points, between U+D800 and
5280 U+DFFF (inclusive), are used by Unicode only for UTF-16.  However, Perl
5281 internally allows all unsigned integer code points (up to the size limit
5282 available on your platform), including surrogates.  But these can cause
5283 problems when being input or output, which is likely where this message
5284 came from.  If you really really know what you are doing you can turn
5285 off this warning by C<no warnings 'utf8';>.
5286
5287 =item Value of %s can be "0"; test with defined()
5288
5289 (W misc) In a conditional expression, you used <HANDLE>, <*> (glob),
5290 C<each()>, or C<readdir()> as a boolean value.  Each of these constructs
5291 can return a value of "0"; that would make the conditional expression
5292 false, which is probably not what you intended.  When using these
5293 constructs in conditional expressions, test their values with the
5294 C<defined> operator.
5295
5296 =item Value of CLI symbol "%s" too long
5297
5298 (W misc) A warning peculiar to VMS.  Perl tried to read the value of an
5299 %ENV element from a CLI symbol table, and found a resultant string
5300 longer than 1024 characters.  The return value has been truncated to
5301 1024 characters.
5302
5303 =item Variable "%s" is not available
5304
5305 (W closure) During compilation, an inner named subroutine or eval is
5306 attempting to capture an outer lexical that is not currently available.
5307 This can happen for one of two reasons. First, the outer lexical may be
5308 declared in an outer anonymous subroutine that has not yet been created.
5309 (Remember that named subs are created at compile time, while anonymous
5310 subs are created at run-time.) For example,
5311
5312     sub { my $a; sub f { $a } }
5313
5314 At the time that f is created, it can't capture the current value of $a,
5315 since the anonymous subroutine hasn't been created yet. Conversely,
5316 the following won't give a warning since the anonymous subroutine has by
5317 now been created and is live:
5318
5319     sub { my $a; eval 'sub f { $a }' }->();
5320
5321 The second situation is caused by an eval accessing a variable that has
5322 gone out of scope, for example,
5323
5324     sub f {
5325         my $a;
5326         sub { eval '$a' }
5327     }
5328     f()->();
5329
5330 Here, when the '$a' in the eval is being compiled, f() is not currently being
5331 executed, so its $a is not available for capture.
5332
5333 =item Variable "%s" is not imported%s
5334
5335 (W misc) With "use strict" in effect, you referred to a global variable
5336 that you apparently thought was imported from another module, because
5337 something else of the same name (usually a subroutine) is exported by
5338 that module.  It usually means you put the wrong funny character on the
5339 front of your variable.
5340
5341 =item Variable length lookbehind not implemented in m/%s/
5342
5343 (F) Lookbehind is allowed only for subexpressions whose length is fixed and
5344 known at compile time.  See L<perlre>.
5345
5346 =item "%s" variable %s masks earlier declaration in same %s
5347
5348 (W misc) A "my", "our" or "state" variable has been redeclared in the current
5349 scope or statement, effectively eliminating all access to the previous
5350 instance.  This is almost always a typographical error.  Note that the
5351 earlier variable will still exist until the end of the scope or until
5352 all closure referents to it are destroyed.
5353
5354 =item Variable syntax
5355
5356 (A) You've accidentally run your script through B<csh> instead
5357 of Perl.  Check the #! line, or manually feed your script into
5358 Perl yourself.
5359
5360 =item Variable "%s" will not stay shared
5361
5362 (W closure) An inner (nested) I<named> subroutine is referencing a
5363 lexical variable defined in an outer named subroutine.
5364
5365 When the inner subroutine is called, it will see the value of
5366 the outer subroutine's variable as it was before and during the *first*
5367 call to the outer subroutine; in this case, after the first call to the
5368 outer subroutine is complete, the inner and outer subroutines will no
5369 longer share a common value for the variable.  In other words, the
5370 variable will no longer be shared.
5371
5372 This problem can usually be solved by making the inner subroutine
5373 anonymous, using the C<sub {}> syntax.  When inner anonymous subs that
5374 reference variables in outer subroutines are created, they
5375 are automatically rebound to the current values of such variables.
5376
5377 =item Verb pattern '%s' has a mandatory argument in regex; marked by <-- HERE in m/%s/ 
5378
5379 (F) You used a verb pattern that requires an argument. Supply an argument
5380 or check that you are using the right verb.
5381
5382 =item Verb pattern '%s' may not have an argument in regex; marked by <-- HERE in m/%s/ 
5383
5384 (F) You used a verb pattern that is not allowed an argument. Remove the 
5385 argument or check that you are using the right verb.
5386
5387 =item Version number must be a constant number
5388
5389 (P) The attempt to translate a C<use Module n.n LIST> statement into
5390 its equivalent C<BEGIN> block found an internal inconsistency with
5391 the version number.
5392
5393 =item Version string '%s' contains invalid data; ignoring: '%s'
5394
5395 (W misc) The version string contains invalid characters at the end, which
5396 are being ignored.
5397
5398 =item Warning: something's wrong
5399
5400 (W) You passed warn() an empty string (the equivalent of C<warn "">) or
5401 you called it with no args and C<$@> was empty.
5402
5403 =item Warning: unable to close filehandle %s properly
5404
5405 (S) The implicit close() done by an open() got an error indication on
5406 the close().  This usually indicates your file system ran out of disk
5407 space.
5408
5409 =item Warning: Use of "%s" without parentheses is ambiguous
5410
5411 (S ambiguous) You wrote a unary operator followed by something that
5412 looks like a binary operator that could also have been interpreted as a
5413 term or unary operator.  For instance, if you know that the rand
5414 function has a default argument of 1.0, and you write
5415
5416     rand + 5;
5417
5418 you may THINK you wrote the same thing as
5419
5420     rand() + 5;
5421
5422 but in actual fact, you got
5423
5424     rand(+5);
5425
5426 So put in parentheses to say what you really mean.
5427
5428 =item Wide character in %s
5429
5430 (S utf8) Perl met a wide character (>255) when it wasn't expecting
5431 one.  This warning is by default on for I/O (like print).  The easiest
5432 way to quiet this warning is simply to add the C<:utf8> layer to the
5433 output, e.g. C<binmode STDOUT, ':utf8'>.  Another way to turn off the
5434 warning is to add C<no warnings 'utf8';> but that is often closer to
5435 cheating.  In general, you are supposed to explicitly mark the
5436 filehandle with an encoding, see L<open> and L<perlfunc/binmode>.
5437
5438 =item Within []-length '%c' not allowed
5439
5440 (F) The count in the (un)pack template may be replaced by C<[TEMPLATE]> only if
5441 C<TEMPLATE> always matches the same amount of packed bytes that can be
5442 determined from the template alone. This is not possible if it contains an
5443 of the codes @, /, U, u, w or a *-length. Redesign the template.
5444
5445 =item write() on closed filehandle %s
5446
5447 (W closed) The filehandle you're writing to got itself closed sometime
5448 before now.  Check your control flow.
5449
5450 =item %s "\x%X" does not map to Unicode
5451
5452 (F) When reading in different encodings Perl tries to map everything
5453 into Unicode characters.  The bytes you read in are not legal in
5454 this encoding, for example
5455
5456     utf8 "\xE4" does not map to Unicode
5457
5458 if you try to read in the a-diaereses Latin-1 as UTF-8.
5459
5460 =item 'X' outside of string
5461
5462 (F) You had a (un)pack template that specified a relative position before
5463 the beginning of the string being (un)packed.  See L<perlfunc/pack>.
5464
5465 =item 'x' outside of string in unpack
5466
5467 (F) You had a pack template that specified a relative position after
5468 the end of the string being unpacked.  See L<perlfunc/pack>.
5469
5470 =item YOU HAVEN'T DISABLED SET-ID SCRIPTS IN THE KERNEL YET!
5471
5472 (F) And you probably never will, because you probably don't have the
5473 sources to your kernel, and your vendor probably doesn't give a rip
5474 about what you want.  Your best bet is to put a setuid C wrapper around
5475 your script.
5476
5477 =item You need to quote "%s"
5478
5479 (W syntax) You assigned a bareword as a signal handler name.
5480 Unfortunately, you already have a subroutine of that name declared,
5481 which means that Perl 5 will try to call the subroutine when the
5482 assignment is executed, which is probably not what you want.  (If it IS
5483 what you want, put an & in front.)
5484
5485 =item Your random numbers are not that random
5486
5487 (F) When trying to initialise the random seed for hashes, Perl could
5488 not get any randomness out of your system.  This usually indicates
5489 Something Very Wrong.
5490
5491 =back
5492
5493 =head1 SEE ALSO
5494
5495 L<warnings>, L<perllexwarn>.
5496
5497 =cut