mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
17 lines
217 B
PHP
17 lines
217 B
PHP
--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
|