18 lines
235 B
PHP
18 lines
235 B
PHP
--TEST--
|
|
Exception during rope finalization
|
|
--FILE--
|
|
<?php
|
|
|
|
set_error_handler(function() { throw new Exception; });
|
|
|
|
try {
|
|
$b = "foo";
|
|
$str = "y$b$a";
|
|
} catch (Exception $e) {
|
|
echo "Exception\n";
|
|
}
|
|
|
|
?>
|
|
--EXPECT--
|
|
Exception
|