
| Path : /usr/src/php/Zend/tests/ |
| Current File : //usr/src/php/Zend/tests/bug42798.phpt |
--TEST--
Bug #42798 (_autoload() not triggered for classes used in method signature)
--FILE--
<?php
function __autoload($className) {
print "$className\n";
exit();
}
function foo($c = ok::constant) {
}
foo();
--EXPECT--
ok