php-src/Zend/tests/temporary_cleaning_011.phpt
2020-02-03 22:52:20 +01:00

21 lines
265 B
PHP

--TEST--
Live range & lists
--FILE--
<?php
class A {
function __destruct() {
throw new Exception();
}
}
$b = new A();
$x = 0;
$c = [[$x,$x]];
try {
list($a, $b) = $c[0];
} catch (Exception $e) {
echo "exception\n";
}
?>
--EXPECT--
exception