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