summaryrefslogtreecommitdiff
path: root/Zend/tests/abstract_inheritance_002.phpt
blob: 916dbb3e3252c3638d22cbc55ecc2691d0e46abe (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, $y = 0); }

echo "DONE";
?>
--EXPECT--
DONE