--TEST--
Trying declare interface with repeated name of inherited method
--FILE--
<?php 

interface {
    function 
b();
}

interface 
{
    function 
b();
}

interface 
extends a{
}

echo 
"done!\n";

?>
--EXPECTF--
done!