ru_php/Zend/tests/access_modifiers/access_modifiers_007.phpt

14 lines
218 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 method in %s on line %d