mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
13 lines
272 B
PHP
13 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
|