mirror of
https://github.com/php/php-src.git
synced 2024-11-27 20:03:40 +08:00
c803499e23
Closes GH-5221
15 lines
188 B
PHP
15 lines
188 B
PHP
--TEST--
|
|
Trying to use lambda in array offset
|
|
--FILE--
|
|
<?php
|
|
|
|
try {
|
|
$test[function(){}] = 1;
|
|
} catch (Error $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
|
|
?>
|
|
--EXPECT--
|
|
Illegal offset type
|