php-src/Zend/tests/errmsg_025.phpt

21 lines
331 B
Plaintext
Raw Normal View History

2007-02-02 12:53:54 +00:00
--TEST--
errmsg: cannot inherit previously inherited constant
--FILE--
<?php
interface test1 {
2020-02-03 21:52:20 +00:00
const FOO = 10;
2007-02-02 12:53:54 +00:00
}
interface test2 {
2020-02-03 21:52:20 +00:00
const FOO = 10;
2007-02-02 12:53:54 +00:00
}
class test implements test1, test2 {
}
echo "Done\n";
?>
--EXPECTF--
Fatal error: Class test inherits both test1::FOO and test2::FOO, which is ambiguous in %s on line %d