ru_php/Zend/tests/use_function/define_imported.phpt

15 lines
261 B
Plaintext
Raw Permalink Normal View History

--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