php-src/Zend/tests/gh8810_3.phpt
Ilija Tovilo 44cd74b624
Fix lineno in backtrace of multi-line function calls
Closes GH-8810
Closes GH-8818
2022-06-23 16:10:32 +02:00

20 lines
278 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(6): {closure}('foo')
#1 {main}
thrown in %s on line 4