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