summaryrefslogtreecommitdiff
path: root/Zend/tests/bug47699.phpt
blob: 8cb3280bcffbe2d93ff4b5306105beaf4714edf3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
--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 EngineException: Class 'X' not found in %sbug47699.php:%d
Stack trace:
#0 {main}
  thrown in %sbug47699.php on line %d