mirror of
https://github.com/php/php-src.git
synced 2025-08-15 13:38:49 +02:00
14 lines
261 B
PHP
14 lines
261 B
PHP
--TEST--
|
|
defining function with same name as imported should fail
|
|
--FILE--
|
|
<?php
|
|
|
|
namespace {
|
|
use function foo\bar;
|
|
|
|
function bar() {}
|
|
}
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Cannot redeclare function bar() (previously declared as local import) in %s on line %d
|