interface_constant_inheritance_006.phpt 223 B

12345678910
  1. --TEST--
  2. Ensure a interface can not have protected constants
  3. --FILE--
  4. <?php
  5. interface A {
  6. protected const FOO = 10;
  7. }
  8. ?>
  9. --EXPECTF--
  10. Fatal error: Access type for interface constant A::FOO must be public in %s on line 3