php-src/Zend/tests/errmsg_032.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
227 B
PHP

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