mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
20 lines
314 B
PHP
20 lines
314 B
PHP
--TEST--
|
|
Leak when setting recursive previous exception in finally handling
|
|
--FILE--
|
|
<?php
|
|
|
|
try {
|
|
try {
|
|
throw new Exception("Test");
|
|
} catch (Exception $e) {
|
|
throw $e;
|
|
} finally {
|
|
throw $e;
|
|
}
|
|
} catch (Exception $e2) {
|
|
echo $e2->getMessage(), "\n";
|
|
}
|
|
|
|
?>
|
|
--EXPECT--
|
|
Test
|