in reply to Re: warnings options description
in thread warnings options description

Yes, i've see those and yes, may be it's possible to dig through diagnostics and find information from there. But may be there is a simple list. Like strict options description in perldoc.

Replies are listed 'Best First'.
Re^3: warnings options description
by Anonymous Monk on Aug 19, 2015 at 04:06 UTC
    I'm still not sure what you are talking about hurricup, what is it?

      Something like this:

      • strict refs This generates a runtime error if you use symbolic references (see perlref).
      • strict vars This generates a compile-time error if you access a variable that was neither explicitly declared (using any of my, our, state, or use vars ) nor fully qualified.
      • strict subs This disables the poetry optimization, generating a compile-time error if you try to use a bareword identifier that's not a subroutine, unless it is a simple identifier (no colons) and that it appears in curly braces or on the left hand side of the => symbol.
      But for warnings options

        Something like this:...But for warnings options

        There is no such thing, perldiag is too big for that