1
0
mirror of https://github.com/php/php-src.git synced 2026-04-03 14:12:38 +02:00
Files
archived-php-src/Zend/tests/inter_04.phpt
Felipe Pena 2bd90344a6 - Fix tests
2011-11-19 18:01:26 +00:00

22 lines
222 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!