Help for this page

Select Code to Download


  1. or download this
    no warnings;
    
    ...
    sub AnotherSub {
        GenerateWarning();
    }
    
  2. or download this
    sub test_warnings {
        local $SIG{__WARN__} = sub {};
    ...
        AnotherSub();
    }