1
0
mirror of https://github.com/php/php-src.git synced 2026-03-29 03:32:20 +02:00
Files
archived-php-src/Zend/tests/inter_02.phpt
2008-12-04 20:12:30 +00:00

22 lines
224 B
PHP

--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)