php-src/Zend/tests/inter_02.phpt

22 lines
224 B
Plaintext
Raw Normal View History

2007-12-13 13:51:02 +00:00
--TEST--
Namespace constant as value default
--FILE--
<?php
namespace foo;
error_reporting(E_ALL);
interface foo {
const foo = 2;
}
2008-12-04 20:12:30 +00:00
function foo($x = \foo\foo::foo) {
2007-12-13 13:51:02 +00:00
var_dump($x);
}
foo();
?>
--EXPECT--
int(2)