summaryrefslogtreecommitdiff
path: root/Zend/tests/objects_018.phpt
blob: 98ea982940cef33119b608d8f30730cfa813e6dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
--TEST--
Using the same function name on interface with inheritance
--FILE--
<?php

interface Itest {
	function a();
}

interface Itest2 {
	function a();
}

interface Itest3 extends Itest, Itest2 {
}

echo "done!\n";

?>
--EXPECT--
done!