errmsg_033.phpt 224 B

123456789101112131415
  1. --TEST--
  2. errmsg: __destruct() cannot be static
  3. --FILE--
  4. <?php
  5. class test {
  6. static function __destruct() {
  7. }
  8. }
  9. echo "Done\n";
  10. ?>
  11. --EXPECTF--
  12. Fatal error: Method test::__destruct() cannot be static in %s on line %d