16 lines
243 B
Plaintext
16 lines
243 B
Plaintext
|
|
--TEST--
|
||
|
|
extending the same interface twice
|
||
|
|
--FILE--
|
||
|
|
<?php
|
||
|
|
|
||
|
|
interface foo {
|
||
|
|
}
|
||
|
|
|
||
|
|
interface bar extends foo, foo {
|
||
|
|
}
|
||
|
|
|
||
|
|
echo "Done\n";
|
||
|
|
?>
|
||
|
|
--EXPECTF--
|
||
|
|
Fatal error: Interface bar cannot implement previously implemented interface foo in %s on line %d
|