interface_method.phpt 201 B

123456789101112
  1. --TEST--
  2. ZE2 An interface method must be abstract
  3. --FILE--
  4. <?php
  5. interface if_a {
  6. function err() {}
  7. }
  8. ?>
  9. --EXPECTF--
  10. Fatal error: Interface function if_a::err() cannot contain body %s on line %d