summaryrefslogtreecommitdiff
path: root/tests/lang/bug21849.phpt
blob: def754a3a6c590e0e299ca333c998fba94ec18f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
--TEST--
Bug #21849 (self::constant doesn't work as method's default parameter)
--FILE--
<?php
class foo {
	const bar = "fubar\n";

	function __construct($arg = self::bar) {
		echo $arg;
	}
}

new foo();
?>
--EXPECT--
fubar