mirror of
https://github.com/php/php-src.git
synced 2024-11-24 02:15:04 +08:00
26 lines
381 B
PHP
26 lines
381 B
PHP
--TEST--
|
|
Bug #71163 (Segmentation Fault (cleanup_unfinished_calls))
|
|
--FILE--
|
|
<?php
|
|
spl_autoload_register(function ($name) {
|
|
eval ("class $name extends Exception { public static function foo() {}}");
|
|
throw new Exception("boom");
|
|
});
|
|
|
|
function test2() {
|
|
try {
|
|
Test::foo();
|
|
} catch (Exception $e) {
|
|
echo "okey";
|
|
}
|
|
}
|
|
|
|
function test() {
|
|
test2();
|
|
}
|
|
|
|
test();
|
|
?>
|
|
--EXPECT--
|
|
okey
|