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.
26 lines
543 B
26 lines
543 B
--TEST--
|
|
finally must not see variables from unmatched catch clauses
|
|
--FILE--
|
|
<?php
|
|
|
|
class FinallyUnmatchedA extends Exception {}
|
|
class FinallyUnmatchedB extends Exception {}
|
|
|
|
function main(): void
|
|
{
|
|
try {
|
|
try {
|
|
throw new FinallyUnmatchedA("a");
|
|
} catch (FinallyUnmatchedB $e) {
|
|
echo "catch-b\n";
|
|
} finally {
|
|
echo isset($e) ? "set\n" : "unset\n";
|
|
}
|
|
} catch (FinallyUnmatchedA $e) {
|
|
echo "outer:" . $e->getMessage() . "\n";
|
|
}
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
unset
|
|
outer:a
|
|
|