php-src/Zend/tests/bug47699.phpt
Nikita Popov c9f27ee422 Display EngineExceptions like ordinary exceptions
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.
2015-05-15 23:40:32 +02:00

22 lines
408 B
PHP

--TEST--
Bug #47699 (autoload and late static binding)
--FILE--
<?php
class A {
static function test($v='') {
print_r(get_called_class());
}
}
class B extends A {
}
B::test();
spl_autoload_register('B::test');
new X();
?>
--EXPECTF--
BB
Fatal error: Uncaught exception 'EngineException' with message 'Class 'X' not found' in %sbug47699.php:%d
Stack trace:
#0 {main}
thrown in %sbug47699.php on line %d