php-src/Zend/tests/use_function/define_imported.phpt
Ilija Tovilo 1c30c5e707
Print location on class redeclaration
Fixes GH-13950
Closes GH-13999
2024-04-30 14:34:43 +02:00

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