blob: 8f74bccc075f03905d72011559d41d64e02456f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
--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
|