mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
14 lines
214 B
PHP
14 lines
214 B
PHP
--TEST--
|
|
Trying to use lambda in array offset
|
|
--FILE--
|
|
<?php
|
|
|
|
try {
|
|
$test[function(){}] = 1;
|
|
} catch (Error $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
|
|
?>
|
|
--EXPECT--
|
|
Cannot access offset of type Closure on array
|