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

18 lines
163 B
PHP

--TEST--
Interface constants can be overridden directly
--FILE--
<?php
interface I
{
const X = 1;
}
class C implements I
{
const X = 2;
}
?>
--EXPECT--