mirror of
https://github.com/php/php-src.git
synced 2024-11-24 02:15:04 +08:00
c9f27ee422
TypeException stays as-is for now because it uses messages that are incompatible with the way exception messages are displayed. closure_038.phpt and a few others now show that we're generating too many exceptions for compound operations on undefined properties -- this needs to be fixed in a followup.
22 lines
456 B
PHP
22 lines
456 B
PHP
--TEST--
|
|
ZE2 factory and singleton, test 3
|
|
--SKIPIF--
|
|
<?php if (version_compare(zend_version(), '2.0.0-dev', '<')) die('skip ZendEngine 2 needed'); ?>
|
|
--FILE--
|
|
<?php
|
|
class test {
|
|
|
|
protected function __construct($x) {
|
|
}
|
|
}
|
|
|
|
$obj = new test;
|
|
|
|
echo "Done\n";
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Uncaught exception 'EngineException' with message 'Call to protected test::__construct() from invalid context' in %s:%d
|
|
Stack trace:
|
|
#0 {main}
|
|
thrown in %s on line %d
|