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