| Current Path : /hdd/hdd21/main/php/php-7.3.1/Zend/tests/ |
| Current File : //hdd/hdd21/main/php/php-7.3.1/Zend/tests/name_collision_08.phpt |
--TEST--
Function declaration colliding with import (in namespace)
--FILE--
<?php
namespace Foo {
function bar() {}
}
namespace Bazzle {
use function Foo\bar;
function bar() {}
}
--EXPECTF--
Fatal error: Cannot declare function Bazzle\bar because the name is already in use in %s on line %d