15 lines
227 B
PHP
15 lines
227 B
PHP
--TEST--
|
|
To string conversion failure in global
|
|
--FILE--
|
|
<?php
|
|
|
|
try {
|
|
global ${new stdClass};
|
|
} catch (Error $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
|
|
?>
|
|
--EXPECT--
|
|
Object of class stdClass could not be converted to string
|