summaryrefslogtreecommitdiff
path: root/Zend/tests/temporary_cleaning_014.phpt
blob: 4ced112094bc3fa14edc9fab35189baaadbc8f3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--TEST--
Leak in JMP_SET
--SKIPIF--
<?php if (!extension_loaded("gmp")) print "skip"; ?>
--FILE--
<?php
set_error_handler(function() { throw new Exception; });
try {
    new GMP ?: null;
} catch (Exception $e) {
}
?>
DONE
--EXPECT--
DONE