mirror of
https://github.com/php/php-src.git
synced 2025-08-20 09:24:05 +02:00
18 lines
309 B
PHP
18 lines
309 B
PHP
--TEST--
|
|
Array unpacking does not work with non-integer keys
|
|
--FILE--
|
|
<?php
|
|
function gen() {
|
|
yield [] => 1;
|
|
yield 1.23 => 123;
|
|
}
|
|
|
|
try {
|
|
[...gen()];
|
|
} catch (Error $ex) {
|
|
echo "Exception: " . $ex->getMessage() . "\n";
|
|
}
|
|
|
|
?>
|
|
--EXPECT--
|
|
Exception: Cannot unpack Traversable with non-integer keys
|