summaryrefslogtreecommitdiff
path: root/Zend/tests/abstract_inheritance_001.phpt
blob: 2bef85f8b3b4c843088ca1af8f4846952381332f (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