mirror of
https://github.com/php/php-src.git
synced 2024-12-15 21:05:51 +08:00
24 lines
250 B
PHP
24 lines
250 B
PHP
--TEST--
|
|
Accessing constants inside namespace
|
|
--FILE--
|
|
<?php
|
|
|
|
namespace foo::x;
|
|
|
|
const x = 2;
|
|
|
|
class x {
|
|
const x = 1;
|
|
}
|
|
|
|
|
|
var_dump(namespace::x, x::x, namespace::x::x);
|
|
var_dump(defined('foo::x::x'));
|
|
|
|
?>
|
|
--EXPECT--
|
|
int(2)
|
|
int(1)
|
|
int(1)
|
|
bool(true)
|