1
0
mirror of https://github.com/php/php-src.git synced 2026-04-25 17:08:14 +02:00
Files
archived-php-src/Zend/tests/list_007.phpt
T
Felipe Pena de758769d3 - New tests
2008-07-28 14:09:00 +00:00

14 lines
125 B
PHP

--TEST--
Using lambda with list()
--FILE--
<?php
list($x, $y) = function() { };
var_dump($x, $y);
?>
--EXPECT--
NULL
NULL