mirror of
https://github.com/php/php-src.git
synced 2024-12-14 04:16:30 +08:00
13 lines
150 B
PHP
13 lines
150 B
PHP
--TEST--
|
|
importing const with same name but different case
|
|
--FILE--
|
|
<?php
|
|
|
|
namespace {
|
|
use const foo\bar;
|
|
use const foo\BAR;
|
|
}
|
|
|
|
?>
|
|
--EXPECT--
|