summaryrefslogtreecommitdiff
path: root/Zend/tests/inter_04.phpt
blob: f0278d04f6d5bbbc0252184f7f0ddd2c5f1fd6b1 (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!