php-src/Zend/tests/gh7792_3.phpt
Ilija Tovilo 733023b2e3
Improve error message class type
Refer to interfaces/enums instead of classes in more places.

Closes GH-7792
Closes GH-8187
2022-03-20 20:54:36 +01:00

19 lines
289 B
PHP

--TEST--
GH-7792 (Refer to enum as enum instead of class)
--FILE--
<?php
interface A {
const FOO = 'foo';
}
interface B {
const FOO = 'foo';
}
enum Foo implements A, B {}
?>
--EXPECTF--
Fatal error: Enum Foo inherits both A::FOO and B::FOO, which is ambiguous in %s on line %d