interface_constant_inheritance_001.phpt 203 B

12345678910111213141516
  1. --TEST--
  2. Ensure an interface may not shadow an inherited constant.
  3. --FILE--
  4. <?php
  5. interface I1 {
  6. const FOO = 10;
  7. }
  8. interface I2 extends I1 {
  9. const FOO = 10;
  10. }
  11. echo "Done\n";
  12. ?>
  13. --EXPECT--
  14. Done