mirror of
https://github.com/php/php-src.git
synced 2024-11-30 21:35:36 +08:00
14 lines
125 B
PHP
14 lines
125 B
PHP
--TEST--
|
|
Using lambda with list()
|
|
--FILE--
|
|
<?php
|
|
|
|
list($x, $y) = function() { };
|
|
|
|
var_dump($x, $y);
|
|
|
|
?>
|
|
--EXPECT--
|
|
NULL
|
|
NULL
|