Annotation of embedaddon/php/tests/lang/bug18872.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: Bug #18872 (class constant used as default parameter)
        !             3: --FILE--
        !             4: <?php   
        !             5: class FooBar {   
        !             6:        const BIFF = 3;   
        !             7: }   
        !             8:    
        !             9: function foo($biff = FooBar::BIFF) {   
        !            10:        echo $biff . "\n";   
        !            11: }   
        !            12:    
        !            13: foo();   
        !            14: foo();   
        !            15: ?>   
        !            16: --EXPECT--
        !            17: 3
        !            18: 3

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>