php-src/Zend/tests/list_007.phpt

14 lines
125 B
Plaintext
Raw Normal View History

2008-07-28 14:09:00 +00:00
--TEST--
Using lambda with list()
--FILE--
<?php
list($x, $y) = function() { };
var_dump($x, $y);
?>
--EXPECT--
NULL
NULL