20 lines
285 B
PHP
20 lines
285 B
PHP
--TEST--
|
|
GH-8810: Fix reported line number of multi-line closure call
|
|
--FILE--
|
|
<?php
|
|
|
|
(function () {
|
|
throw new Exception();
|
|
})
|
|
(
|
|
'foo',
|
|
);
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Uncaught Exception in %s:4
|
|
Stack trace:
|
|
#0 %s(%d): {closure:%s:%d}('foo')
|
|
#1 {main}
|
|
thrown in %s on line 4
|