blob: 5902c585d8b75c3e622aafbf94acada7a5acaa46 (
plain)
1
2
3
4
5
6
7
8
9
10
|
--TEST--
Bug #72162 (use-after-free - error_reporting)
--FILE--
<?php
error_reporting(E_ALL);
$var11 = new StdClass();
$var16 = error_reporting($var11);
?>
--EXPECTF--
Catchable fatal error: Object of class stdClass could not be converted to string in %sbug72162.php on line %d
|