php-src/Zend/tests/bug47699.phpt
2009-03-25 10:39:26 +00:00

19 lines
303 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: Class 'X' not found in %sbug47699.php on line %d