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

12 lines
219 B
PHP

--TEST--
ZE2 An interface method cannot be final
--FILE--
<?php
class if_a {
abstract final function err();
}
?>
--EXPECTF--
Fatal error: Cannot use the final modifier on an abstract class member in %s on line %d