-=[ Mr. Bumblebee ]=-
_Indonesia_

Path : /usr/src/php/Zend/tests/
File Upload :
Current File : //usr/src/php/Zend/tests/inter_02.phpt

--TEST--
Namespace constant as value default
--FILE--
<?php

namespace foo;

error_reporting(E_ALL);

interface foo {
    const foo = 2;
}

function foo($x = \foo\foo::foo) {
    var_dump($x);
}

foo();
?>
--EXPECT--
int(2)

Copyright © 2017 || Recoded By Mr.Bumblebee