ru_php/Zend/tests/constants/final_constants/final_const9.phpt

23 lines
217 B
PHP

--TEST--
Class constants inherited from interfaces can be redeclared
--FILE--
<?php
interface I1
{
const C = 1;
}
interface I2
{
const C = 2;
}
class C implements I1, I2
{
const C = 3;
}
?>
--EXPECT--