blob: 9893c3389f970fc3e80a54b17a50ee682fccd292 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
--TEST--
Bug #79777: String cast exception during die should be handled gracefully
--FILE--
<?php
die(new stdClass);
?>
--EXPECTF--
Fatal error: Uncaught Error: Object of class stdClass could not be converted to string in %s:%d
Stack trace:
#0 {main}
thrown in %s on line %d
|