summaryrefslogtreecommitdiff
path: root/Zend/tests/bug70967.phpt
blob: 89fc80b3f7e796f6ba1aa8130e4d6fd91d455d92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--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: Method A::__toString() must not throw an exception, caught Error: Call to undefined function undefined_function() in %sbug70967.php on line %d