1
0
mirror of https://github.com/php/php-src.git synced 2026-03-29 19:52:20 +02:00
Files
archived-php-src/tests/classes/inheritance_004.phpt

19 lines
257 B
PHP

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