summaryrefslogtreecommitdiff
path: root/Zend/tests/abstract_inheritance_001.phpt
blob: 9e061e65d5aac54c4a516231fab4c012cf663c7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
--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