mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
12 lines
207 B
PHP
12 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
|