mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
13 lines
124 B
PHP
13 lines
124 B
PHP
--TEST--
|
|
Destructuring with list() a value of type null
|
|
--FILE--
|
|
<?php
|
|
|
|
list($a) = null;
|
|
|
|
var_dump($a);
|
|
|
|
?>
|
|
--EXPECT--
|
|
NULL
|