php-src/Zend/tests/gh8810_1.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

23 lines
307 B
PHP

--TEST--
GH-8810: Fix reported line number of multi-line function call
--FILE--
<?php
function foo($bar, $baz) {
throw new Exception();
}
foo
(
'bar',
'baz',
);
?>
--EXPECTF--
Fatal error: Uncaught Exception in %s:4
Stack trace:
#0 %s(7): foo('bar', 'baz')
#1 {main}
thrown in %s on line 4