php-src/Zend/tests/temporary_cleaning_014.phpt
Nikita Popov 7485978339
Migrate SKIPIF -> EXTENSIONS (#7138)
This is an automated migration of most SKIPIF extension_loaded checks.
2021-06-11 11:57:42 +02:00

16 lines
193 B
PHP

--TEST--
Leak in JMP_SET
--EXTENSIONS--
gmp
--FILE--
<?php
set_error_handler(function() { throw new Exception; });
try {
new GMP ?: null;
} catch (Exception $e) {
}
?>
DONE
--EXPECT--
DONE