php-src/tests/classes/interface_method_final.phpt

16 lines
325 B
Plaintext
Raw Normal View History

2003-03-12 00:09:59 +00:00
--TEST--
2003-08-09 14:48:47 +00:00
ZE2 An interface method cannot be final
2003-03-12 00:09:59 +00:00
--SKIPIF--
<?php if (version_compare(zend_version(), '2.0.0-dev', '<')) die('skip ZendEngine 2 needed'); ?>
--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