1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 17:22:15 +01:00
Files
archived-php-src/Zend/tests/bug42798.phpt

16 lines
233 B
PHP

--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