| Current Path : /hdd/hdd21/main/php/php-7.3.1/Zend/tests/ |
| Current File : //hdd/hdd21/main/php/php-7.3.1/Zend/tests/temporary_cleaning_011.phpt |
--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