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

24 lines
314 B
PHP

--TEST--
GH-8810: Fix reported line number of multi-line method call
--FILE--
<?php
class A {
public function b() {
throw new Exception();
}
}
(new A())
->
b
();
?>
--EXPECTF--
Fatal error: Uncaught Exception in %s:5
Stack trace:
#0 %s(11): A->b()
#1 {main}
thrown in %s on line 5