xref: /PHP-7.4/Zend/tests/objects_018.phpt (revision ded3d984)
1--TEST--
2Using the same function name on interface with inheritance
3--FILE--
4<?php
5
6interface Itest {
7	function a();
8}
9
10interface Itest2 {
11	function a();
12}
13
14interface Itest3 extends Itest, Itest2 {
15}
16
17echo "done!\n";
18
19?>
20--EXPECT--
21done!
22