mirror of
https://github.com/php/php-src.git
synced 2024-12-12 11:23:53 +08:00
16 lines
243 B
PHP
16 lines
243 B
PHP
--TEST--
|
|
implementing the same interface twice
|
|
--FILE--
|
|
<?php
|
|
|
|
interface foo {
|
|
}
|
|
|
|
class bar implements foo, foo {
|
|
}
|
|
|
|
echo "Done\n";
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Class bar cannot implement previously implemented interface foo in %s on line %d
|