php-src/Zend/tests/errmsg_033.phpt
Nikita Popov fbbcf82ab7 Unify static/non-static check for magic methods
And promote it to be fatal.
2020-07-20 10:39:43 +02:00

16 lines
224 B
PHP

--TEST--
errmsg: __destruct() cannot be static
--FILE--
<?php
class test {
static function __destruct() {
}
}
echo "Done\n";
?>
--EXPECTF--
Fatal error: Method test::__destruct() cannot be static in %s on line %d