summaryrefslogtreecommitdiff
path: root/Zend/tests/list_007.phpt
blob: 35a25bce65cc86eea98e64712cdf14a6d8ffc773 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--TEST--
Using lambda with list()
--FILE--
<?php

list($x, $y) = function() { };

var_dump($x, $y);

?>
--EXPECT--
NULL
NULL