Help for this page

Select Code to Download


  1. or download this
      is( $^W, 1, 'warnings are on' );
      third_party_code();
      is( $^W, 1, 'warnings are still on' );
    
  2. or download this
       {   local $^W;
           third_party_code();
           ok (!$^W, 'warnings still off');
       }