- Fix tests

This commit is contained in:
Felipe Pena 2011-11-19 18:01:26 +00:00
parent bc810a443d
commit ebd7dc5f88
3 changed files with 7 additions and 3 deletions

View File

@ -17,4 +17,4 @@ interface a extends d, w { }
?>
--EXPECTF--
Fatal error: Can't inherit abstract function c::B() (previously declared abstract in d) in %s on line %d
Fatal error: Cannot make non static method c::B() static in class d in %s on line %d

View File

@ -14,6 +14,8 @@ interface b {
interface c extends a, b {
}
echo "done!\n";
?>
--EXPECTF--
Fatal error: Can't inherit abstract function b::b() (previously declared abstract in a) in %s on line %d
done!

View File

@ -14,6 +14,8 @@ interface Itest2 {
interface Itest3 extends Itest, Itest2 {
}
echo "done!\n";
?>
--EXPECTF--
Fatal error: Can't inherit abstract function Itest2::a() (previously declared abstract in Itest) in %s on line %d
done!