perldoc2tree.cgi: /usr/lib/perl5/5.8.8/warnings.pm: cannot resolve L in paragraph 14.
The warnings pragma is a replacement for the command line flag -w,
but the pragma is limited to the enclosing block, while the flag is global.
See perllexwarn for more information.
If no import list is supplied, all possible warnings are either enabled
or disabled.
A number of functions are provided to assist module authors.
if (warnings::enabled())
{ warnings::warn($message) }
warnings::warnif($category, $message)
Equivalent to:
if (warnings::enabled($category))
{ warnings::warn($category, $message) }
warnings::warnif($object, $message)
Equivalent to:
if (warnings::enabled($object))
{ warnings::warn($object, $message) }
perldoc2tree.cgi: /usr/lib/perl5/5.8.8/warnings.pm: cannot resolve L in paragraph 49.
perldoc2tree.cgi: /usr/lib/perl5/5.8.8/warnings.pm: cannot resolve L in paragraph 49.