1--TEST-- 2Using lambda with list() 3--FILE-- 4<?php 5 6list($x, $y) = function() { }; 7 8var_dump($x, $y); 9 10?> 11--EXPECT-- 12NULL 13NULL 14