objects_018.phpt 244 B

123456789101112131415161718192021
  1. --TEST--
  2. Using the same function name on interface with inheritance
  3. --FILE--
  4. <?php
  5. interface Itest {
  6. function a();
  7. }
  8. interface Itest2 {
  9. function a();
  10. }
  11. interface Itest3 extends Itest, Itest2 {
  12. }
  13. echo "done!\n";
  14. ?>
  15. --EXPECT--
  16. done!