17 lines
250 B
Plaintext
17 lines
250 B
Plaintext
|
|
--TEST--
|
||
|
|
Bug #42798 (_autoload() not triggered for classes used in method signature)
|
||
|
|
--FILE--
|
||
|
|
<?php
|
||
|
|
spl_autoload_register(function ($className) {
|
||
|
|
print "$className\n";
|
||
|
|
exit();
|
||
|
|
});
|
||
|
|
|
||
|
|
function foo($c = ok::constant) {
|
||
|
|
}
|
||
|
|
|
||
|
|
foo();
|
||
|
|
?>
|
||
|
|
--EXPECT--
|
||
|
|
ok
|