php-src/Zend/tests/objects_002.phpt

23 lines
364 B
Plaintext
Raw Normal View History

--TEST--
method overloading with different method signature
--INI--
error_reporting=8191
--FILE--
<?php
class test {
2020-02-04 05:52:20 +08:00
function foo() {}
}
class test2 extends test {
2020-02-04 05:52:20 +08:00
function foo() {}
}
class test3 extends test {
2020-02-04 05:52:20 +08:00
function foo($arg) {}
}
?>
2018-09-17 01:16:42 +08:00
--EXPECTF--
Fatal error: Declaration of test3::foo($arg) must be compatible with test::foo() in %s on line %d