mirror of
https://github.com/php/php-src.git
synced 2024-12-02 22:34:55 +08:00
fbbcf82ab7
And promote it to be fatal.
16 lines
215 B
PHP
16 lines
215 B
PHP
--TEST--
|
|
errmsg: __clone() cannot be static
|
|
--FILE--
|
|
<?php
|
|
|
|
class test {
|
|
|
|
static function __clone() {
|
|
}
|
|
}
|
|
|
|
echo "Done\n";
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Method test::__clone() cannot be static in %s on line %d
|