summaryrefslogtreecommitdiff
path: root/Zend/tests/array_unpack/non_integer_keys.phpt
blob: a5e407743c37d20e1df604c4d66db086a2f414e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
--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