mirror of
https://github.com/php/php-src.git
synced 2024-12-13 03:44:17 +08:00
13 lines
207 B
PHP
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
|