php-8.0.30-src/Zend/tests/inter_04.phpt

22 lines
226 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";
?>
--EXPECT--
done!