1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 08:12:21 +01:00
Files
archived-php-src/Zend/tests/inter_04.phpt
2020-02-03 22:52:20 +01:00

22 lines
226 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";
?>
--EXPECT--
done!