php-src/tests/lang/bug21849.phpt

17 lines
224 B
Plaintext
Raw Normal View History

2003-01-23 23:22:23 +00:00
--TEST--
Bug #21849 (self::constant doesn't work as method's default parameter)
--FILE--
<?php
class foo {
const bar = "fubar\n";
2018-09-16 17:16:42 +00:00
2015-03-31 14:10:22 +00:00
function __construct($arg = self::bar) {
2003-01-23 23:22:23 +00:00
echo $arg;
}
}
new foo();
?>
--EXPECT--
fubar