mirror of
https://github.com/php/php-src.git
synced 2024-12-02 22:34:55 +08:00
15 lines
198 B
PHP
15 lines
198 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--
|
|
Illegal offset type
|