mirror of
https://github.com/php/php-src.git
synced 2024-12-17 22:09:12 +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
|