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