Your IP : 216.73.216.48


Current Path : /hdd/hdd21/main/php5/php-5.6.6/tests/classes/
Upload File :
Current File : //hdd/hdd21/main/php5/php-5.6.6/tests/classes/interface_constant_inheritance_004.phpt

--TEST--
Ensure a class may implement two interfaces which include the same constant (due to inheritance). 
--FILE--
<?php
interface IA {
	const FOO = 10;
}

interface IB extends IA {
}

class C implements IA, IB {
}

echo "Done\n";
?>
--EXPECTF--
Done