mirror of
https://github.com/php/php-src.git
synced 2024-12-25 01:40:50 +08:00
14 lines
272 B
PHP
14 lines
272 B
PHP
--TEST--
|
|
importing function with same name but different case should fail
|
|
--FILE--
|
|
<?php
|
|
|
|
namespace {
|
|
use function foo\bar;
|
|
use function foo\BAR;
|
|
}
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Cannot use function foo\BAR as BAR because the name is already in use in %s on line %d
|