mirror of
https://github.com/php/php-src.git
synced 2024-12-01 05:43:38 +08:00
22 lines
222 B
PHP
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!
|