php-src/tests/lang/bug21849.phpt

17 lines
217 B
Plaintext
Raw Normal View History

2003-01-24 07:22:23 +08:00
--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