mirror of
https://github.com/php/php-src.git
synced 2024-11-24 02:15:04 +08:00
19 lines
253 B
PHP
19 lines
253 B
PHP
--TEST--
|
|
Ensure a class may implement two interfaces which include the same constant (due to inheritance).
|
|
--FILE--
|
|
<?php
|
|
interface IA {
|
|
const FOO = 10;
|
|
}
|
|
|
|
interface IB extends IA {
|
|
}
|
|
|
|
class C implements IA, IB {
|
|
}
|
|
|
|
echo "Done\n";
|
|
?>
|
|
--EXPECTF--
|
|
Done
|