php-src/Zend/tests/access_modifiers_007.phpt
2020-02-03 22:52:20 +01:00

14 lines
224 B
PHP

--TEST--
abstract final methods errmsg
--FILE--
<?php
class test {
final abstract function foo();
}
echo "Done\n";
?>
--EXPECTF--
Fatal error: Cannot use the final modifier on an abstract class member in %s on line %d