You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

16 lines
217 B

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