
| Path : /usr/src/php/tests/lang/ |
| Current File : //usr/src/php/tests/lang/bug21849.phpt |
--TEST--
Bug #21849 (self::constant doesn't work as method's default parameter)
--FILE--
<?php
class foo {
const bar = "fubar\n";
function foo($arg = self::bar) {
echo $arg;
}
}
new foo();
?>
--EXPECT--
fubar