mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00

C:\> php -r "interface stdClass { }" Error: Cannot declare interface stdClass, because the name is already in use in Command Line Code on line 1
14 lines
238 B
PHP
14 lines
238 B
PHP
--TEST--
|
|
Trying use an existing alias name in class declaration
|
|
--FILE--
|
|
<?php
|
|
|
|
interface a { }
|
|
|
|
class_alias('a', 'b');
|
|
|
|
class b { }
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Warning: Cannot declare interface b, because the name is already in use in %s on line %d
|