
| Path : /usr/src/php/Zend/tests/ |
| Current File : //usr/src/php/Zend/tests/objects_014.phpt |
--TEST--
extending the same interface twice
--FILE--
<?php
interface foo {
}
interface bar extends foo, foo {
}
echo "Done\n";
?>
--EXPECTF--
Fatal error: Class bar cannot implement previously implemented interface foo in %s on line %d