mirror of
https://github.com/php/php-src.git
synced 2026-04-29 03:03:26 +02: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.
33 lines
596 B
PHP
33 lines
596 B
PHP
--TEST--
|
|
ZE2 An abstract class cannot be instantiated
|
|
--SKIPIF--
|
|
<?php if (version_compare(zend_version(), '2.0.0-dev', '<')) die('skip ZendEngine 2 needed'); ?>
|
|
--FILE--
|
|
<?php
|
|
|
|
abstract class fail {
|
|
abstract function show();
|
|
}
|
|
|
|
class pass extends fail {
|
|
function show() {
|
|
echo "Call to function show()\n";
|
|
}
|
|
}
|
|
|
|
$t2 = new pass();
|
|
$t2->show();
|
|
|
|
$t = new fail();
|
|
$t->show();
|
|
|
|
echo "Done\n"; // shouldn't be displayed
|
|
?>
|
|
--EXPECTF--
|
|
Call to function show()
|
|
|
|
Fatal error: Uncaught EngineException: Cannot instantiate abstract class fail in %s:%d
|
|
Stack trace:
|
|
#0 {main}
|
|
thrown in %s on line %d
|