php-src/Zend/tests/errmsg_015.phpt

15 lines
233 B
Plaintext
Raw Normal View History

2007-02-07 19:10:32 +08:00
--TEST--
errmsg: __clone() cannot accept any arguments
--FILE--
<?php
class test {
2020-02-04 05:52:20 +08:00
function __clone($var) {
}
2007-02-07 19:10:32 +08:00
}
echo "Done\n";
?>
2018-09-17 01:16:42 +08:00
--EXPECTF--
2007-02-07 19:10:32 +08:00
Fatal error: Method test::__clone() cannot accept any arguments in %s on line %d