mirror of
https://github.com/php/php-src.git
synced 2024-12-02 22:34:55 +08:00
13 lines
215 B
PHP
13 lines
215 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, $y = 0); }
|
|
|
|
echo "DONE";
|
|
?>
|
|
--EXPECT--
|
|
DONE
|