php-src/Zend/tests/inter_04.phpt

22 lines
222 B
Plaintext
Raw Normal View History

2008-05-11 22:44:10 +00:00
--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 {
}
2011-11-19 18:01:26 +00:00
echo "done!\n";
2008-05-11 22:44:10 +00:00
?>
--EXPECTF--
2011-11-19 18:01:26 +00:00
done!