list_007.phpt 268 B

123456789101112131415
  1. --TEST--
  2. Using lambda with list()
  3. --FILE--
  4. <?php
  5. list($x, $y) = function() { };
  6. var_dump($x, $y);
  7. ?>
  8. --EXPECTF--
  9. Fatal error: Uncaught Error: Cannot use object of type Closure as array in %slist_007.php:3
  10. Stack trace:
  11. #0 {main}
  12. thrown in %slist_007.php on line 3