-=[ Mr. Bumblebee ]=-
_Indonesia_

Path : /usr/src/php/tests/classes/
File Upload :
Current File : //usr/src/php/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

Copyright © 2017 || Recoded By Mr.Bumblebee