xref: /PHP-8.0/Zend/tests/objects_005.phpt (revision f8d79582)
1--TEST--
2method overloading with different method signature
3--INI--
4error_reporting=8191
5--FILE--
6<?php
7
8class test {
9    function &foo() {}
10}
11
12class test2 extends test {
13    function &foo() {}
14}
15
16class test3 extends test {
17    function foo() {}
18}
19
20?>
21--EXPECTF--
22Fatal error: Declaration of test3::foo() must be compatible with & test::foo() in %s on line %d
23