temporary_cleaning_014.phpt 193 B

123456789101112131415
  1. --TEST--
  2. Leak in JMP_SET
  3. --EXTENSIONS--
  4. gmp
  5. --FILE--
  6. <?php
  7. set_error_handler(function() { throw new Exception; });
  8. try {
  9. new GMP ?: null;
  10. } catch (Exception $e) {
  11. }
  12. ?>
  13. DONE
  14. --EXPECT--
  15. DONE