mirror of
https://github.com/php/php-src.git
synced 2024-12-18 14:30:35 +08:00
16 lines
305 B
PHP
16 lines
305 B
PHP
--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
|