xref: /PHP-7.4/Zend/tests/inter_04.phpt (revision 782352c5)
1--TEST--
2Trying declare interface with repeated name of inherited method
3--FILE--
4<?php
5
6interface a {
7	function b();
8}
9
10interface b {
11	function b();
12}
13
14interface c extends a, b {
15}
16
17echo "done!\n";
18
19?>
20--EXPECT--
21done!
22