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

?>
--EXPECT--
done!