Is line 7 (now commented out) what you referred to?

no error here on:
#!C:/perl/bin use warnings; use strict; BEGIN { local $@; # call_undefined_subroutine_or_another_error("argument"); } print "blabla\n";
from perldoc perlvar
 Error Indicators
   The variables $@, $!, $^E, and $? contain information about different
   types of error conditions that may appear during execution of a Perl
   program. The variables are shown ordered by the "distance" between the
   subsystem which reported the error and the Perl process. They correspond
   to errors detected by the Perl interpreter, C library, operating system,
   or an external program, respectively.

   To illustrate the differences between these variables, consider the
   following Perl expression, which uses a single-quoted string:

       eval q{
           open my $pipe, "/cdrom/install |" or die $!;
           my @res = <$pipe>;
           close $pipe or die "bad pipe: $?, $!";
       };

   After execution of this statement all 4 variables may have been set.

   $@ is set if the string to be "eval"-ed did not compile (this may happen
   if "open" or "close" were imported with bad prototypes), or if Perl code
   executed during evaluation die()d . In these cases the value of $@ is
   the compile error, or the argument to "die" (which will interpolate $!
   and $?). (See also Fatal, though.)

In reply to Re^3: Unexpected result after localizing eval_error variable "$@" within "BEGIN" block by ww
in thread Unexpected result after localizing eval_error variable "$@" within "BEGIN" block by bdimych

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.