errmsg_018.phpt 296 B

12345678910111213
  1. --TEST--
  2. errmsg: static abstract function
  3. --FILE--
  4. <?php
  5. class test {
  6. static abstract function foo ();
  7. }
  8. echo "Done\n";
  9. ?>
  10. --EXPECTF--
  11. Fatal error: Class test contains 1 abstract method and must therefore be declared abstract or implement the remaining methods (test::foo) in %s on line %d