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!