TypePHP 编译器
https://swoole.com/aot/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
483 B
28 lines
483 B
--TEST--
|
|
TypePHP destructor exceptions remain inside the Zend wrapper boundary
|
|
--FILE--
|
|
<?php
|
|
|
|
final class ThrowingDestructor
|
|
{
|
|
public function __destruct()
|
|
{
|
|
throw new RuntimeException('destructor');
|
|
}
|
|
}
|
|
|
|
function main(): void
|
|
{
|
|
try {
|
|
$value = new ThrowingDestructor();
|
|
unset($value);
|
|
} catch (RuntimeException $exception) {
|
|
echo $exception->getMessage(), "\n";
|
|
}
|
|
|
|
echo "continued\n";
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
destructor
|
|
continued
|
|
|