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

?>
--EXPECT--
done!