php-src/Zend/tests/inter_04.phpt
2011-11-19 18:01:26 +00:00

22 lines
222 B
PHP

--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!