Your IP : 216.73.216.48


Current Path : /hdd/hdd21/main/php5/php-5.6.6/tests/lang/
Upload File :
Current File : //hdd/hdd21/main/php5/php-5.6.6/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