php-src/Zend/tests/errmsg_025.phpt
Steph Fox 6d8760677d - killed off UEXPECT
- altered EXPECT for parser errors. This may or may not be a Good Thing.
2008-05-26 14:33:44 +00:00

21 lines
324 B
PHP

--TEST--
errmsg: cannot inherit previously inherited constant
--FILE--
<?php
interface test1 {
const FOO = 10;
}
interface test2 {
const FOO = 10;
}
class test implements test1, test2 {
}
echo "Done\n";
?>
--EXPECTF--
Fatal error: Cannot inherit previously-inherited constant FOO from interface test2 in %s on line %d