summaryrefslogtreecommitdiff
path: root/tests/lang/bug21849.phpt
blob: 3b7f664f866b616910635b0b3a746c21126e9069 (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