Files
php-src/tests/classes/inheritance_003.phpt
2020-02-03 22:52:20 +01:00

19 lines
264 B
PHP

--TEST--
ZE2 method inheritance without interfaces
--FILE--
<?php
class A
{
function f($x) {}
}
class B extends A
{
function f() {}
}
?>
--EXPECTF--
Fatal error: Declaration of B::f() must be compatible with A::f($x) in %sinheritance_003.php on line %d