The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
say "1..2";
{
  {
     say "ok 1";
     ::ControlExceptionReturn.new().throw();
  }
  say "not ok 2";
}
CONTROL {
  $_.handled = 1;
  say "ok 2";
}