mirror of
https://github.com/php/php-src.git
synced 2024-12-18 14:30:35 +08:00
3ae995f03c
This implements a reduced variant of #1226 with just the following change: -Fatal error: Uncaught exception 'EngineException' with message 'Call to private method foo::bar() from context ''' in %s:%d +Fatal error: Uncaught EngineException: Call to private method foo::bar() from context '' in %s:%d The '' wrapper around messages is very weird if the exception message itself contains ''. Futhermore having the message wrapped in '' doesn't work for the "and defined" suffix of TypeExceptions.
20 lines
320 B
PHP
20 lines
320 B
PHP
--TEST--
|
|
Bug #50005 (Throwing through Reflection modified Exception object makes segmentation fault)
|
|
--FILE--
|
|
<?php
|
|
|
|
class a extends exception {
|
|
public function __construct() {
|
|
$this->file = null;
|
|
}
|
|
}
|
|
|
|
throw new a;
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Uncaught a in :%d
|
|
Stack trace:
|
|
#0 {main}
|
|
thrown in Unknown on line %d
|