php-src/Zend/tests/closures/closure_array_key_error.phpt
Alexandre Daubois e43074a1d8
Rename poorly named tests in Zend/tests (#19332)
And move some into their relevant folders
2025-07-31 19:58:01 +01:00

14 lines
224 B
PHP

--TEST--
Trying to use lambda as array key
--FILE--
<?php
try {
var_dump(array(function() { } => 1));
} catch (Error $e) {
echo $e->getMessage(), "\n";
}
?>
--EXPECT--
Cannot access offset of type Closure on array