
| Path : /usr/src/php/Zend/tests/ |
| Current File : //usr/src/php/Zend/tests/inter_04.phpt |
--TEST--
Trying declare interface with repeated name of inherited method
--FILE--
<?php
interface a {
function b();
}
interface b {
function b();
}
interface c extends a, b {
}
echo "done!\n";
?>
--EXPECTF--
done!