--TEST--
Bug #44414 (incomplete reporting about abstract methods)
--FILE--
<?php
abstract class {
  abstract function 
foo();
}
interface 
{
  function 
bar();
}
class 
extends implements {
}
?>
--EXPECTF--
Fatal error: Class C contains 2 abstract methods and must therefore be declared abstract or implement the remaining methods (A::foo, B::bar) in %sbug44414.php on line 9