Your IP : 216.73.216.48


Current Path : /hdd/hdd12/install/php/php-7.4.32/tests/classes/
Upload File :
Current File : //hdd/hdd12/install/php/php-7.4.32/tests/classes/interface_constant_inheritance_002.phpt

--TEST--
Ensure a class may not shadow a constant inherited from an interface.
--FILE--
<?php
interface I {
	const FOO = 10;
}

class C implements I {
	const FOO = 10;
}

echo "Done\n";
?>
--EXPECTF--
Fatal error: Cannot inherit previously-inherited or override constant FOO from interface I in %s on line 6