summaryrefslogtreecommitdiff
path: root/Zend/tests/objects_018.phpt
blob: ca5b4b8cde09e91632547abfad3d6b7bcb552a79 (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";

?>
--EXPECTF--
done!