php-src/Zend/tests/abstract_inheritance_001.phpt
2018-10-14 12:07:20 -03:00

13 lines
207 B
PHP

--TEST--
Allow abstract function override
--FILE--
<?php
abstract class A { abstract function bar($x); }
abstract class B extends A { abstract function bar($x); }
echo "DONE";
?>
--EXPECT--
DONE