bug71871.phpt 223 B

123456789101112
  1. --TEST--
  2. Bug #71871: Interfaces allow final and abstract functions
  3. --FILE--
  4. <?php
  5. interface test {
  6. final function test();
  7. }
  8. ?>
  9. --EXPECTF--
  10. Fatal error: Interface method test::test() must not be final in %s on line %d