16 lines
322 B
PHP
16 lines
322 B
PHP
--TEST--
|
|
Bug #79790: "Illegal offset type" exception during AST evaluation not handled properly
|
|
--FILE--
|
|
<?php
|
|
b();
|
|
function b($a = array()[array ()]) {
|
|
++$c[function () {}];
|
|
}
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Uncaught TypeError: Illegal offset type in %s:%d
|
|
Stack trace:
|
|
#0 %s(%d): b()
|
|
#1 {main}
|
|
thrown in %s on line %d
|