xref: /PHP-5.5/Zend/tests/inter_04.phpt (revision b3b3eb8c)
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--EXPECTF--
21done!
22