mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
19 lines
245 B
PHP
19 lines
245 B
PHP
--TEST--
|
|
Destructuring with list() a value of type int
|
|
--FILE--
|
|
<?php
|
|
|
|
$v = 5;
|
|
|
|
list($a, $b) = $v;
|
|
|
|
var_dump($a, $b);
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Warning: Cannot use int as array in %s on line %d
|
|
|
|
Warning: Cannot use int as array in %s on line %d
|
|
NULL
|
|
NULL
|