mirror of
https://github.com/php/php-src.git
synced 2025-08-21 01:45:16 +02:00
12 lines
224 B
PHP
Executable file
12 lines
224 B
PHP
Executable file
--TEST--
|
|
030: Name ambiguity (import name & class name)
|
|
--FILE--
|
|
<?php
|
|
class Foo {
|
|
}
|
|
|
|
use A::B as Foo;
|
|
|
|
new Foo();
|
|
--EXPECTF--
|
|
Fatal error: Cannot use A::B as Foo because the name is already in use in %sns_030.php on line 5
|