1
0
mirror of https://github.com/php/php-src.git synced 2026-04-24 00:18:23 +02:00
Files
archived-php-src/Zend/tests/inter_04.phpt
T
2018-10-14 19:44:14 +02:00

22 lines
221 B
PHP

--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!