mirror of
https://github.com/php/php-src.git
synced 2024-12-04 23:34:25 +08:00
22 lines
288 B
PHP
22 lines
288 B
PHP
--TEST--
|
|
ZE2 method inheritance without interfaces
|
|
--FILE--
|
|
<?php
|
|
|
|
class A
|
|
{
|
|
function f($x) {}
|
|
}
|
|
|
|
class B extends A
|
|
{
|
|
function f() {}
|
|
}
|
|
|
|
?>
|
|
===DONE===
|
|
--EXPECTF--
|
|
|
|
Strict Standards: Declaration of B::f() should be compatible with A::f($x) in %sinheritance_003.php on line %d
|
|
===DONE===
|