1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00
Files
archived-php-src/Zend/tests/list/destruct_float.phpt

19 lines
255 B
PHP

--TEST--
Destructuring with list() a value of type float
--FILE--
<?php
$v = 25.64;
list($a, $b) = $v;
var_dump($a, $b);
?>
--EXPECTF--
Warning: Cannot use float as array in %s on line %d
Warning: Cannot use float as array in %s on line %d
NULL
NULL