
| Path : /proc/thread-self/root/usr/src/php/Zend/tests/ |
| Current File : //proc/thread-self/root/usr/src/php/Zend/tests/list_007.phpt |
--TEST--
Using lambda with list()
--FILE--
<?php
list($x, $y) = function() { };
var_dump($x, $y);
?>
--EXPECT--
NULL
NULL