summaryrefslogtreecommitdiff
path: root/Zend/tests/inter_04.phpt
blob: ea0bd847606959c968773f0472be6df1d41d0b8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
--TEST--
Trying declare interface with repeated name of inherited method
--FILE--
<?php 

interface a {
	function b();
}

interface b {
	function b();
}

interface c extends a, b {
}

echo "done!\n";

?>
--EXPECTF--
done!