mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
22 lines
224 B
PHP
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)
|