php-src/Zend/tests/class_alias_004.phpt
Ilija Tovilo 1c30c5e707
Print location on class redeclaration
Fixes GH-13950
Closes GH-13999
2024-04-30 14:34:43 +02:00

16 lines
249 B
PHP

--TEST--
Testing creation of alias using an existing interface name
--FILE--
<?php
class foo { }
interface test { }
class_alias('foo', 'test');
?>
--EXPECTF--
Warning: Cannot redeclare class test (previously declared in %s:%d) in %s on line %d