errmsg_015.phpt 227 B

1234567891011121314
  1. --TEST--
  2. errmsg: __clone() cannot accept any arguments
  3. --FILE--
  4. <?php
  5. class test {
  6. function __clone($var) {
  7. }
  8. }
  9. echo "Done\n";
  10. ?>
  11. --EXPECTF--
  12. Fatal error: Method test::__clone() cannot take arguments in %s on line %d