php-src/Zend/tests/access_modifiers_007.phpt
2018-10-14 19:45:12 +02:00

14 lines
221 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