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

12 lines
214 B
PHP

--TEST--
Object naming collision error: interface/interface
--FILE--
<?php
interface A { }
interface A { }
?>
--EXPECTF--
Fatal error: Cannot redeclare interface A (previously declared in %s:%d) in %s on line %d