ru_php/tests/classes/abstract_derived.phpt

17 lines
326 B
PHP

--TEST--
ZE2 A derived class with an abstract method must be abstract
--FILE--
<?php
class base {
}
class derived extends base {
abstract function show();
}
?>
===DONE===
--EXPECTF--
Fatal error: Class derived declares abstract method show() and must therefore be declared abstract in %sabstract_derived.php on line %d