mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
19 lines
369 B
PHP
19 lines
369 B
PHP
--TEST--
|
|
Bug #70967 (Weird error handling for __toString when Error is thrown)
|
|
--FILE--
|
|
<?php
|
|
class A {
|
|
public function __toString() {
|
|
undefined_function();
|
|
}
|
|
}
|
|
|
|
echo (new A);
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Uncaught Error: Call to undefined function undefined_function() in %s:%d
|
|
Stack trace:
|
|
#0 %s(%d): A->__toString()
|
|
#1 {main}
|
|
thrown in %s on line %d
|